Hoogle Search
Within LTS Haskell 24.41 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
Person :: Text -> Maybe URI -> Maybe Text -> [Element] -> Personfeed Text.Atom.Feed No documentation available.
-
Types for the Atom Publishing Protocol (APP)
type family
Plus (n :: Nat) (m :: Nat) :: Natfin Data.Type.Nat Addition.
>>> reflect (snat :: SNat (Plus Nat1 Nat2)) 3
-
foundation Foundation Partialiality wrapper.
-
foundation Foundation An error related to the evaluation of a Partial value that failed. it contains the name of the function and the reason for failure
-
foundation Foundation Represent the accessor for types that can be stored in the UArray and MUArray. Types need to be a instance of storable and have fixed sized.
-
foundation Foundation No documentation available.
-
foundation Foundation No documentation available.
-
foundation Foundation No documentation available.
-
foundation Foundation Proxy is a type that holds no data, but has a phantom parameter of arbitrary type (or even kind). Its use is to provide type information, even though there is no value available of that type (or it may be too costly to create one). Historically, Proxy :: Proxy a is a safer alternative to the undefined :: a idiom.
>>> Proxy :: Proxy (Void, Int -> Int) Proxy
Proxy can even hold types of higher kinds,>>> Proxy :: Proxy Either Proxy
>>> Proxy :: Proxy Functor Proxy
>>> Proxy :: Proxy complicatedStructure Proxy