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.
(
:<|> ) :: a -> b -> (:<|>) a bgogol-core Gogol.Prelude No documentation available.
-
gogol-core Gogol.Prelude The contained API (second argument) can be found under ("/" ++ path) (path being the first argument). Example:
>>> -- GET /hello/world >>> -- returning a JSON encoded World value >>> type MyApi = "hello" :> "world" :> Get '[JSON] World
(
:. ) :: forall a (n1 :: Nat) . a -> Vec n1 a -> Vec ('S n1) ahedgehog Hedgehog.Internal.Gen No documentation available.
-
profunctors Data.Profunctor (:->) has a polymorphic kind since 5.6.
-
profunctors Data.Profunctor.Types (:->) has a polymorphic kind since 5.6.
(
:| ) :: a -> [a] -> NonEmpty abase-compat Data.List.NonEmpty.Compat No documentation available.
(
:| ) :: a -> DList a -> DNonEmpty adlist Data.DList.DNonEmpty No documentation available.
-
bifunctors Data.Bifunctor.Functor Using parametricity as an approximation of a natural transformation in two arguments.
type family (mode :: k)
:- apiservant Servant.API No documentation available.
-
servant Servant.API.Alternative 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 :}