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.

  1. (&) :: a -> (a -> b) -> b

    data-effects-th Data.Effect.TH

    & is a reverse application operator. This provides notational convenience. Its precedence is one higher than that of the forward application operator $, which allows & to be nested in $. This is a version of flip id, where id is specialized from a -> a to (a -> b) -> (a -> b) which by the associativity of (->) is (a -> b) -> a -> b. flipping this yields a -> (a -> b) -> b which is the type signature of &

    Examples

    >>> 5 & (+1) & show
    "6"
    
    >>> sqrt $ [1 / n^2 | n <- [1..1000]] & sum & (*6)
    3.1406380562059946
    

  2. (&) :: a -> (a -> b) -> b

    incipit-base Incipit.Base

    & is a reverse application operator. This provides notational convenience. Its precedence is one higher than that of the forward application operator $, which allows & to be nested in $. This is a version of flip id, where id is specialized from a -> a to (a -> b) -> (a -> b) which by the associativity of (->) is (a -> b) -> a -> b. flipping this yields a -> (a -> b) -> b which is the type signature of &

    Examples

    >>> 5 & (+1) & show
    "6"
    
    >>> sqrt $ [1 / n^2 | n <- [1..1000]] & sum & (*6)
    3.1406380562059946
    

  3. (&) :: a -> (a -> b) -> b

    reflex-dom-core Reflex.Dom.Widget.Input

    & is a reverse application operator. This provides notational convenience. Its precedence is one higher than that of the forward application operator $, which allows & to be nested in $. This is a version of flip id, where id is specialized from a -> a to (a -> b) -> (a -> b) which by the associativity of (->) is (a -> b) -> a -> b. flipping this yields a -> (a -> b) -> b which is the type signature of &

    Examples

    >>> 5 & (+1) & show
    "6"
    
    >>> sqrt $ [1 / n^2 | n <- [1..1000]] & sum & (*6)
    3.1406380562059946
    

  4. type (k :: Attribute a global boolean) & (b :: [Symbol]) = GetAttributeName k ': b

    type-of-html Html.Type

    No documentation available.

  5. (&) :: a -> (a -> b) -> b

    ansi-terminal-game Terminal.Game

    & is a reverse application operator. This provides notational convenience. Its precedence is one higher than that of the forward application operator $, which allows & to be nested in $. This is a version of flip id, where id is specialized from a -> a to (a -> b) -> (a -> b) which by the associativity of (->) is (a -> b) -> a -> b. flipping this yields a -> (a -> b) -> b which is the type signature of &

    Examples

    >>> 5 & (+1) & show
    "6"
    
    >>> sqrt $ [1 / n^2 | n <- [1..1000]] & sum & (*6)
    3.1406380562059946
    

  6. (&) :: a -> (a -> b) -> b

    configuration-tools Configuration.Utils.Internal

    & is a reverse application operator. This provides notational convenience. Its precedence is one higher than that of the forward application operator $, which allows & to be nested in $. This is a version of flip id, where id is specialized from a -> a to (a -> b) -> (a -> b) which by the associativity of (->) is (a -> b) -> a -> b. flipping this yields a -> (a -> b) -> b which is the type signature of &

    Examples

    >>> 5 & (+1) & show
    "6"
    
    >>> sqrt $ [1 / n^2 | n <- [1..1000]] & sum & (*6)
    3.1406380562059946
    

  7. (&) :: forall (n :: Nat) s . (KnownNat n, 1 <= n, KnownNat (n + 1), Reifies s W) => BVar s (R n) -> BVar s ℝ -> BVar s (R (n + 1))

    hmatrix-backprop Numeric.LinearAlgebra.Static.Backprop

    No documentation available.

  8. (&) :: Exp String -> Exp String -> Exp String

    nsis Development.NSIS

    Concatenate two strings, for example "$FOO" & "$BAR" is equivalent to "$FOO$BAR".

  9. (&) :: Refinement -> Css -> Css

    clay Clay

    Assign a stylesheet to a filter selector. When the selector is nested inside an outer scope it will be composed with the with selector.

  10. (&) :: Refinement -> Css -> Css

    clay Clay.Stylesheet

    Assign a stylesheet to a filter selector. When the selector is nested inside an outer scope it will be composed with the with selector.

Page 4 of many | Previous | Next