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.
(
|+ ) :: Biplate item to => Type (item -> from) to -> item -> Type from touniplate Data.Generics.PlateDirect The field to the right may contain the target.
(
||+ ) :: Biplate item to => Type ([item] -> from) to -> [item] -> Type from touniplate Data.Generics.PlateDirect The field to the right is a list of types which may contain the target
-
uniplate Data.Generics.PlateTypeable the field to the right may contain the target.
(
|+ ) :: Biplate item to => Type (item -> from) to -> item -> Type from touniplate Data.Generics.Uniplate.Direct The field to the right may contain the target.
(
||+ ) :: Biplate item to => Type ([item] -> from) to -> [item] -> Type from touniplate Data.Generics.Uniplate.Direct The field to the right is a list of types which may contain the target
-
uniplate Data.Generics.Uniplate.Typeable The field to the right may contain the target.
(
%+ ) :: Format r a -> Format r' r -> Format r' aformatting Formatting Concatenate two formatters with a space in between.
>>> :set -XOverloadedStrings >>> format (int %+ "+" %+ int %+ "=" %+ int) 2 3 5 "2 + 3 = 5"
(
<%+> ) :: 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"
(
%+ ) :: Format r a -> Format r' r -> Format r' aformatting Formatting.Internal Concatenate two formatters with a space in between.
>>> :set -XOverloadedStrings >>> format (int %+ "+" %+ int %+ "=" %+ int) 2 3 5 "2 + 3 = 5"
(
<%+> ) :: 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"