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. ($/) :: Cursor node -> (Cursor node -> [a]) -> [a]

    xml-indexed-cursor Text.XML.Cursor.Indexed

    Apply an axis to the children of a 'Cursor node'.

  2. ($//) :: Cursor node -> (Cursor node -> [a]) -> [a]

    xml-indexed-cursor Text.XML.Cursor.Indexed

    Apply an axis to the descendants of a 'Cursor node'.

  3. ($|) :: Cursor node -> (Cursor node -> a) -> a

    xml-indexed-cursor Text.XML.Cursor.Indexed

    Apply an axis to a 'Cursor node'.

  4. ($@) :: Map r b a -> b -> Covector r a

    algebra Numeric.Map

    extract a linear functional from a linear map

  5. ($<<) :: Arrow a => d -> a b c -> a b d

    arrow-extras Control.Arrow.Extras

    postcomposition with a pure value (right-to-left variant)

  6. ($>>) :: Arrow a => c -> a c d -> a x d

    arrow-extras Control.Arrow.Extras

    precomposition with a pure value (right-to-left variant)

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

    classy-prelude-yesod ClassyPrelude.Yesod

    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.

  8. ($!!) :: NFData a => (a -> b) -> a -> b

    classy-prelude-yesod ClassyPrelude.Yesod

    the deep analogue of $!. In the expression f $!! x, x is fully evaluated before the function f is applied to it.

  9. ($$) :: Monad m => Source m a -> Sink a m b -> m b

    classy-prelude-yesod ClassyPrelude.Yesod

    The connect operator, which pulls data from a source and pushes to a sink. If you would like to keep the Source open to be used for other operations, use the connect-and-resume operator $$+. Since 0.4.0

  10. ($$+) :: Monad m => ConduitT () a m () -> ConduitT a Void m b -> m (SealedConduitT () a m (), b)

    classy-prelude-yesod ClassyPrelude.Yesod

    The connect-and-resume operator. This does not close the Source, but instead returns it to be used again. This allows a Source to be used incrementally in a large program, without forcing the entire program to live in the Sink monad. Mnemonic: connect + do more. Since 0.5.0

Page 28 of many | Previous | Next