Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. sleepThreadUntil :: (RealFrac n, MonadIO m) => n -> m ()

    hosc Sound.Osc.Time.Thread.MonadIO

    No documentation available.

  2. package hreader

    Generalization of MonadReader and ReaderT using hset Generalization of MonadReader and ReaderT using hset

  3. module Control.Monad.HReader

    No documentation available.

  4. newtype HReaderT (els :: [Type]) (m :: Type -> Type) a

    hreader Control.Monad.HReader

    Monad transformer which is like ReaderT but for HSet only

  5. HReaderT :: ReaderT (HSet els) m a -> HReaderT (els :: [Type]) (m :: Type -> Type) a

    hreader Control.Monad.HReader

    No documentation available.

  6. narrowHReaderT :: forall (m :: Type -> Type) (els :: [Type]) (subels :: [Type]) proxy a . (Monad m, Applicative m, SubHSettable els subels) => proxy subels -> HReaderT subels m a -> HReaderT els m a

    hreader Control.Monad.HReader

    Convenient variant of subHSetHReaderT with proxy type to make it posible to run nested HReaderT in place without complex type declarations, e.g.

    narrowHReaderT (Proxy :: Proxy '[String, Int]) $ do
    doThingsWithString
    doThingsWithInt
    doThingsWithOtherStuff -- < this will not compile
    

  7. runHReaderT :: forall (els :: [Type]) m a . HSet els -> HReaderT els m a -> m a

    hreader Control.Monad.HReader

    No documentation available.

  8. subHSetHReaderT :: forall (m :: Type -> Type) (els :: [Type]) (subels :: [Type]) a . (Monad m, Applicative m, SubHSettable els subels) => HReaderT subels m a -> HReaderT els m a

    hreader Control.Monad.HReader

    Run a local reader with a subset of HSet elements.

  9. unHReaderT :: HReaderT (els :: [Type]) (m :: Type -> Type) a -> ReaderT (HSet els) m a

    hreader Control.Monad.HReader

    No documentation available.

  10. class (Monad m, Applicative m) => MonadHReader (m :: Type -> Type)

    hreader Control.Monad.HReader.Class

    Monad which is a reader of HSet (or just can construct it).

Page 709 of many | Previous | Next