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.
(
$/ ) :: Cursor node -> (Cursor node -> [a]) -> [a]xml-indexed-cursor Text.XML.Cursor.Indexed Apply an axis to the children of a 'Cursor node'.
(
$// ) :: Cursor node -> (Cursor node -> [a]) -> [a]xml-indexed-cursor Text.XML.Cursor.Indexed Apply an axis to the descendants of a 'Cursor node'.
(
$| ) :: Cursor node -> (Cursor node -> a) -> axml-indexed-cursor Text.XML.Cursor.Indexed Apply an axis to a 'Cursor node'.
(
$@ ) :: Map r b a -> b -> Covector r aalgebra Numeric.Map extract a linear functional from a linear map
(
$<< ) :: Arrow a => d -> a b c -> a b darrow-extras Control.Arrow.Extras postcomposition with a pure value (right-to-left variant)
(
$>> ) :: Arrow a => c -> a c d -> a x darrow-extras Control.Arrow.Extras precomposition with a pure value (right-to-left variant)
-
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.
(
$!! ) :: NFData a => (a -> b) -> a -> bclassy-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.
(
$$ ) :: Monad m => Source m a -> Sink a m b -> m bclassy-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
(
$$+ ) :: 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