WidgetRattus-0.1: src/AsyncRattus/Primitives.hs
-- | The language primitives of Async Rattus. Note that the typing
-- rules for 'delay', 'adv','select' and 'box' are more restrictive
-- than the Haskell types that are indicated. The stricter Async
-- Rattus typing rules for these primitives are given below.
{-# LANGUAGE TypeOperators #-}
module AsyncRattus.Primitives
(O
,Box
,Select(..)
,delay
,adv
,promote
,box
,unbox
,select
,never
,Stable
,Continuous
) where
import AsyncRattus.InternalPrimitives