Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
stepFunctionsActivity :: Val Text -> StepFunctionsActivitystratosphere Stratosphere.Resources.StepFunctionsActivity Constructor for StepFunctionsActivity containing required fields as arguments.
stepFunctionsStateMachine :: Val Text -> StepFunctionsStateMachinestratosphere Stratosphere.Resources.StepFunctionsStateMachine Constructor for StepFunctionsStateMachine containing required fields as arguments.
-
stylish-haskell Language.Haskell.Stylish No documentation available.
stepFilter :: Step -> Lines -> Module -> Linesstylish-haskell Language.Haskell.Stylish.Step No documentation available.
-
stylish-haskell Language.Haskell.Stylish.Step No documentation available.
stepAnt :: Step ex -> [Formula ex]swish Swish.Proof Antecedents of inference rule
stepCon :: Step ex -> Formula exswish Swish.Proof Named consequence of inference rule
stepRule :: Step ex -> Rule exswish Swish.Proof Inference rule used
stepper :: MonadIO m => a -> Event a -> m (Behavior a)threepenny-gui Graphics.UI.Threepenny.Core Construct a time-varying function from an initial value and a stream of new values. Think of it as
stepper x0 ex = return $ \time -> last (x0 : [x | (timex,x) <- ex, timex < time])
Note that the smaller-than-sign in the comparison timex < time means that the value of the behavior changes "slightly after" the event occurrences. This allows for recursive definitions.stepper :: MonadIO m => a -> Event a -> m (Behavior a)threepenny-gui Reactive.Threepenny Construct a time-varying function from an initial value and a stream of new values. Think of it as
stepper x0 ex = return $ \time -> last (x0 : [x | (timex,x) <- ex, timex < time])
Note that the smaller-than-sign in the comparison timex < time means that the value of the behavior changes "slightly after" the event occurrences. This allows for recursive definitions.