----------------------------------------------------------------------------- -- | -- Module : Control.Monad.Queue.Util -- Copyright : (c) Leon P Smith 2009-2011 -- License : BSD3 -- -- Maintainer : leon@melding-monads.com -- Stability : experimental -- Portability : portable -- ----------------------------------------------------------------------------- module Control.Monad.Queue.Util where import Data.Word type LenType = Word type Cont r a = (a -> r) -> r