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. unsafeRead :: (HasCallStack, Read a) => [Char] -> a

    protolude Protolude.Unsafe

    No documentation available.

  2. runReaderIO :: ReaderIO e a -> e -> IO a

    reflex Control.Monad.ReaderIO

    No documentation available.

  3. alreadyUniqDynamic :: Dynamic t a -> UniqDynamic t a

    reflex Reflex.Dynamic.Uniq

    Create a UniqDynamic without uniqing it on creation. This will be slightly faster than uniqDynamic when used with a Dynamic whose values are always (or nearly always) different from its previous values; if used with a Dynamic whose values do not change frequently, it may be much slower than uniqDynamic

  4. class (ReflexHost t, Applicative m, Monad m) => MonadReadEvent t (m :: Type -> Type) | m -> t

    reflex Reflex.Host.Class

    Monad that allows to read events' values.

  5. fireEventRefAndRead :: (MonadReflexHost t m, MonadRef m, Ref m ~ Ref IO) => Ref m (Maybe (EventTrigger t a)) -> a -> EventHandle t b -> m (Maybe b)

    reflex Reflex.Host.Class

    Fire the given trigger if it is not Nothing, and read from the given EventHandle.

  6. fireEventsAndRead :: MonadReflexHost t m => [DSum (EventTrigger t) Identity] -> ReadPhase m a -> m a

    reflex Reflex.Host.Class

    Propagate some events firings and read the values of events afterwards. This function will create a new frame to fire the given events. It will then update all dependent events and behaviors. After that is done, the given callback is executed which allows to read the final values of events and check whether they have fired in this frame or not. All events that are given are fired at the same time. This function is typically used in the main loop of a reflex framework implementation. The main loop waits for external events to happen (such as keyboard input or a mouse click) and then fires the corresponding events using this function. The read callback can be used to read output events and perform a corresponding response action to the external event.

  7. untilReady :: (Adjustable t m, PostBuild t m) => m a -> m b -> m (a, Event t b)

    reflex Reflex.Network

    Render a placeholder network to be shown while another network is not yet done building

  8. class Monad m => NotReady t (m :: Type -> Type) | m -> t

    reflex Reflex.NotReady.Class

    No documentation available.

  9. notReady :: NotReady t m => m ()

    reflex Reflex.NotReady.Class

    No documentation available.

  10. notReadyUntil :: NotReady t m => Event t a -> m ()

    reflex Reflex.NotReady.Class

    No documentation available.

Page 545 of many | Previous | Next