Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
&.// ) :: Axis node -> (Cursor node -> [a]) -> Cursor node -> [a]xml-conduit Text.XML.Cursor.Generic Combine two axes so that the second works on both the result nodes, and their descendants.
(
&/ ) :: Axis node -> (Cursor node -> [a]) -> Cursor node -> [a]xml-conduit Text.XML.Cursor.Generic Combine two axes so that the second works on the children of the results of the first.
(
&// ) :: Axis node -> (Cursor node -> [a]) -> Cursor node -> [a]xml-conduit Text.XML.Cursor.Generic Combine two axes so that the second works on the descendants of the results of the first.
(
&| ) :: (Cursor node -> [a]) -> (a -> b) -> Cursor node -> [b]xml-conduit Text.XML.Cursor.Generic Apply a function to the result of an axis.
(
&= ) :: (Data val, Data ann) => val -> ann -> valcmdargs System.Console.CmdArgs.Annotate Add an annotation to a value. It is recommended that anyone making use of this function redefine it with a more restrictive type signature to control the type of the annotation (the second argument). Any redefinitions of this function should add an INLINE pragma, to reduce the chance of incorrect optimisations.
(
&= ) :: Data val => val -> Ann -> valcmdargs System.Console.CmdArgs.Implicit Add an annotation to a value. Note that if the value is evaluated more than once the annotation will only be available the first time.
-
cmdargs System.Console.CmdArgs.Quote Version of &= without a Data context, only to be used within cmdArgsQuote.
(
&&# ) :: Bool# -> Bool# -> Bool#ghc-bignum GHC.Num.Primitives No documentation available.
-
rio RIO.Prelude Boolean "and", lazy in the second argument
(
&&& ) :: Arrow a => a b c -> a b c' -> a b (c, c')rio RIO.Prelude Fanout: send the input to both argument arrows and combine their output. The default definition may be overridden with a more efficient version if desired.