Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
pattern (
:$$: ) :: () => ErrorMessage -> ErrorMessage -> ErrorMessageincipit-base Incipit.Base Stack two pieces of error message on top of each other.
pattern (
:<>: ) :: () => ErrorMessage -> ErrorMessage -> ErrorMessageincipit-base Incipit.Base Put two pieces of error message next to each other.
(
:| ) :: a -> [a] -> NonEmpty aincipit-base Incipit.Base No documentation available.
(
:| ) :: a -> [a] -> NonEmpty akeyed-vals-hspec-tests Test.KeyedVals.Hspec No documentation available.
data ((f :: k -> Type)
:*: (g :: k -> Type)) (p :: k)linear-generics Generics.Linear Products: encode multiple arguments to constructors
(
:*: ) :: f p -> g p -> (:*:) (f :: k -> Type) (g :: k -> Type) (p :: k)linear-generics Generics.Linear No documentation available.
data ((f :: k -> Type)
:+: (g :: k -> Type)) (p :: k)linear-generics Generics.Linear Sums: encode choice between constructors
newtype ((f :: k2 -> Type)
:.: (g :: k1 -> k2)) (x :: k1)linear-generics Generics.Linear The composition operator for types. We use our own here because for many classes, it's possible to share generic deriving classes between GHC.Generics and Generics.Linear by just instantiating them for both composition operators (and MP1).
(
:+: ) :: forall x (xs :: [Type]) . x -> HList xs -> HList (x ': xs)multistate Data.HList.HList No documentation available.
newtype (f :: k -> Type)
:~> (g :: k -> Type)natural-transformation Control.Natural A natural transformation suitable for storing in a container.