Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
pattern (
:|> ) :: Seq a -> a -> Seq acontainers Data.Sequence.Internal A bidirectional pattern synonym viewing the rear of a non-empty sequence.
(
:*: ) :: a -> b -> StrictPair a bcontainers Utils.Containers.Internal.StrictPair No documentation available.
-
QuickCheck Test.QuickCheck.Function The type of possibly partial concrete functions
-
lens Control.Lens.Combinators Propositional equality. If a :~: b is inhabited by some terminating value, then the type a is the same as the type b. To use this equality in practice, pattern-match on the a :~: b to get out the Refl constructor; in the body of the pattern-match, the compiler knows that a ~ b.
pattern (
:< ) :: Cons b b a a => a -> b -> blens Control.Lens.Cons No documentation available.
pattern (
:> ) :: Snoc a a b b => a -> b -> alens Control.Lens.Cons No documentation available.
-
lens Control.Lens.Equality Propositional equality. If a :~: b is inhabited by some terminating value, then the type a is the same as the type b. To use this equality in practice, pattern-match on the a :~: b to get out the Refl constructor; in the body of the pattern-match, the compiler knows that a ~ b.
-
test-framework Test.Framework.Providers.API No documentation available.
type family (mode :: k)
:- apigogol-core Gogol.Prelude No documentation available.
-
gogol-core Gogol.Prelude Union of two APIs, first takes precedence in case of overlap. Example:
>>> :{ type MyApi = "books" :> Get '[JSON] [Book] -- GET /books :<|> "books" :> ReqBody '[JSON] Book :> Post '[JSON] () -- POST /books :}