Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. (|+) :: Biplate item to => Type (item -> from) to -> item -> Type from to

    uniplate Data.Generics.PlateDirect

    The field to the right may contain the target.

  2. (||+) :: Biplate item to => Type ([item] -> from) to -> [item] -> Type from to

    uniplate Data.Generics.PlateDirect

    The field to the right is a list of types which may contain the target

  3. (|+) :: (Typeable item, Typeable to, PlateAll item to) => Type (item -> from) to -> item -> Type from to

    uniplate Data.Generics.PlateTypeable

    the field to the right may contain the target.

  4. (|+) :: Biplate item to => Type (item -> from) to -> item -> Type from to

    uniplate Data.Generics.Uniplate.Direct

    The field to the right may contain the target.

  5. (||+) :: Biplate item to => Type ([item] -> from) to -> [item] -> Type from to

    uniplate Data.Generics.Uniplate.Direct

    The field to the right is a list of types which may contain the target

  6. (|+) :: (Typeable item, Typeable to, PlateAll item to) => Type (item -> from) to -> item -> Type from to

    uniplate Data.Generics.Uniplate.Typeable

    The field to the right may contain the target.

  7. (%+) :: Format r a -> Format r' r -> Format r' a

    formatting Formatting

    Concatenate two formatters with a space in between.

    >>> :set -XOverloadedStrings
    
    >>> format (int %+ "+" %+ int %+ "=" %+ int) 2 3 5
    "2 + 3 = 5"
    

  8. (<%+>) :: Format r (a -> r) -> Format r (a -> r) -> Format r (a -> r)

    formatting Formatting

    Like (<>) except put a space between the two formatters. For example: format (year %+ month %+ dayOfMonth) now will yield "2022 06 06"

  9. (%+) :: Format r a -> Format r' r -> Format r' a

    formatting Formatting.Internal

    Concatenate two formatters with a space in between.

    >>> :set -XOverloadedStrings
    
    >>> format (int %+ "+" %+ int %+ "=" %+ int) 2 3 5
    "2 + 3 = 5"
    

  10. (<%+>) :: Format r (a -> r) -> Format r (a -> r) -> Format r (a -> r)

    formatting Formatting.Internal

    Like (<>) except put a space between the two formatters. For example: format (year %+ month %+ dayOfMonth) now will yield "2022 06 06"

Page 46 of many | Previous | Next