Hoogle Search
Within LTS Haskell 24.31 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
pattern (
:|| ) :: Piece -> [Piece] -> Keytomland Toml.Type.Key Bidirectional pattern synonym for constructing and deconstructing Keys.
-
type-level-kv-list Data.KVList No documentation available.
(
:= ) :: forall (key :: Symbol) value . ListKey key -> value -> key := valuetype-level-kv-list Data.KVList No documentation available.
data (a :: Nat)
:<=? (b :: Nat)typelits-witnesses GHC.TypeLits.Compare Two possible ordered relationships between two natural numbers.
(
:$$: ) :: ErrorMessage -> ErrorMessage -> ErrorMessagetypenums Data.TypeLits Stack two pieces of error message on top of each other.
-
typenums Data.TypeLits No documentation available.
(
:<>: ) :: ErrorMessage -> ErrorMessage -> ErrorMessagetypenums Data.TypeLits Put two pieces of error message next to each other.
-
typenums Data.TypeNums No documentation available.
-
typenums Data.TypeNums.Rats No documentation available.
type (e :: k)
:| (es :: [k]) = Member e esvary Vary Constrain es to be any type list containing e. Useful to talk about variants generically without having to specify the exact type list right away. For instance, the type of from is
Vary.from :: (a :| l) => a -> Vary l
because we can use it to construct any Vary as long as there is an a somewhere in its list of types.