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.
-
rebase Rebase.Prelude Strict (call-by-value) application operator. It takes a function and an argument, evaluates the argument to weak head normal form (WHNF), then calls the function with that value.
(
$# ) :: Functor f => f (a -> b) -> a -> f bsynthesizer-core Synthesizer.ApplicativeUtility No documentation available.
(
$: ) :: Applicative f => f (a -> b) -> f a -> f bsynthesizer-core Synthesizer.ApplicativeUtility This corresponds to <*>
(
$:: ) :: (Applicative f, Traversable t) => f (t a -> b) -> t (f a) -> f bsynthesizer-core Synthesizer.ApplicativeUtility Instead of mixMulti $:: map f xs the caller should write mixMulti $: mapM f xs in order to save the user from learning another infix operator.
(
$^ ) :: Functor f => (a -> b) -> f a -> f bsynthesizer-core Synthesizer.ApplicativeUtility No documentation available.
(
$* ) :: C process => process a b -> SignalOf process a -> SignalOf process bsynthesizer-core Synthesizer.Causal.Class No documentation available.
(
$< ) :: C process => process (a, b) c -> SignalOf process a -> process b csynthesizer-core Synthesizer.Causal.Class No documentation available.
(
$> ) :: C process => process (a, b) c -> SignalOf process b -> process a csynthesizer-core Synthesizer.Causal.Class No documentation available.
(
$= ) :: forall w (m :: Type -> Type) c . Set w m c => Entity -> c -> SystemT w m ()apecs Apecs Writes a Component to a given Entity. Will overwrite existing Components. set operator
-
apecs Apecs Applies a function, if possible. modify operator