Hoogle Search

Within LTS Haskell 24.22 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. (<&>) :: Functor f => f a -> (a -> b) -> f b

    protolude Protolude.Functor

    Flipped version of <$>.

    (<&>) = flip fmap
    

    Examples

    Apply (+1) to a list, a Just and a Right:
    >>> Just 2 <&> (+1)
    Just 3
    
    >>> [1,2,3] <&> (+1)
    [2,3,4]
    
    >>> Right 3 <&> (+1)
    Right 4
    

  2. (*&) :: (C u, C a) => a -> T u a -> T u a

    numeric-prelude Number.DimensionTerm

    No documentation available.

  3. (%&&) :: forall (a :: Bool) (b :: Bool) . BoolRepr a -> BoolRepr b -> BoolRepr (a && b)

    parameterized-utils Data.Parameterized.BoolRepr

    Conjunction

  4. (<&&>) :: Applicative a => a Bool -> a Bool -> a Bool

    classy-prelude ClassyPrelude

    && lifted to an Applicative.

  5. (<&>) :: Functor f => f a -> (a -> b) -> f b

    classy-prelude ClassyPrelude

    Flipped version of <$>.

    (<&>) = flip fmap
    

    Examples

    Apply (+1) to a list, a Just and a Right:
    >>> Just 2 <&> (+1)
    Just 3
    
    >>> [1,2,3] <&> (+1)
    [2,3,4]
    
    >>> Right 3 <&> (+1)
    Right 4
    

  6. (<&>) :: SqlExpr (Insertion (a -> b)) -> SqlExpr (Value a) -> SqlExpr (Insertion b)

    esqueleto Database.Esqueleto

    Apply extra SqlExpr Value arguments to a PersistField constructor

  7. data a :& b

    esqueleto Database.Esqueleto.Experimental

    A left-precedence pair. Pronounced "and". Used to represent expressions that have been joined together. The precedence behavior can be demonstrated by:

    a :& b :& c == ((a :& b) :& c)
    
    See the examples at the beginning of this module to see how this operator is used in JOIN operations.

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

    esqueleto Database.Esqueleto.Experimental

    No documentation available.

  9. (<&>) :: SqlExpr (Insertion (a -> b)) -> SqlExpr (Value a) -> SqlExpr (Insertion b)

    esqueleto Database.Esqueleto.Experimental

    Apply extra SqlExpr Value arguments to a PersistField constructor

  10. data a :& b

    esqueleto Database.Esqueleto.Experimental.From.Join

    A left-precedence pair. Pronounced "and". Used to represent expressions that have been joined together. The precedence behavior can be demonstrated by:

    a :& b :& c == ((a :& b) :& c)
    
    See the examples at the beginning of this module to see how this operator is used in JOIN operations.

Page 32 of many | Previous | Next