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.
unsafeRead :: (HasCallStack, Read a) => [Char] -> aprotolude Protolude.Unsafe No documentation available.
runReaderIO :: ReaderIO e a -> e -> IO areflex Control.Monad.ReaderIO No documentation available.
alreadyUniqDynamic :: Dynamic t a -> UniqDynamic t areflex 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
class (ReflexHost t, Applicative m, Monad m) =>
MonadReadEvent t (m :: Type -> Type) | m -> treflex Reflex.Host.Class Monad that allows to read events' values.
-
reflex Reflex.Host.Class Fire the given trigger if it is not Nothing, and read from the given EventHandle.
fireEventsAndRead :: MonadReflexHost t m => [DSum (EventTrigger t) Identity] -> ReadPhase m a -> m areflex 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.
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
class Monad m =>
NotReady t (m :: Type -> Type) | m -> treflex Reflex.NotReady.Class No documentation available.
notReady :: NotReady t m => m ()reflex Reflex.NotReady.Class No documentation available.
notReadyUntil :: NotReady t m => Event t a -> m ()reflex Reflex.NotReady.Class No documentation available.