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.

  1. ($!) :: (a -> b) -> a -> b

    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.

  2. ($#) :: Functor f => f (a -> b) -> a -> f b

    synthesizer-core Synthesizer.ApplicativeUtility

    No documentation available.

  3. ($:) :: Applicative f => f (a -> b) -> f a -> f b

    synthesizer-core Synthesizer.ApplicativeUtility

    This corresponds to <*>

  4. ($::) :: (Applicative f, Traversable t) => f (t a -> b) -> t (f a) -> f b

    synthesizer-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.

  5. ($^) :: Functor f => (a -> b) -> f a -> f b

    synthesizer-core Synthesizer.ApplicativeUtility

    No documentation available.

  6. ($*) :: C process => process a b -> SignalOf process a -> SignalOf process b

    synthesizer-core Synthesizer.Causal.Class

    No documentation available.

  7. ($<) :: C process => process (a, b) c -> SignalOf process a -> process b c

    synthesizer-core Synthesizer.Causal.Class

    No documentation available.

  8. ($>) :: C process => process (a, b) c -> SignalOf process b -> process a c

    synthesizer-core Synthesizer.Causal.Class

    No documentation available.

  9. ($=) :: 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

  10. ($~) :: forall w (m :: Type -> Type) cx cy . (Get w m cx, Set w m cy) => Entity -> (cx -> cy) -> SystemT w m ()

    apecs Apecs

    Applies a function, if possible. modify operator

Page 18 of many | Previous | Next