Hoogle Search
Within LTS Haskell 24.40 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
module Text.XML.HXT.Parser.
ProtocolHandlerUtil No documentation available.
-
Function for evaluating polynomials using Horher's method.
data
Proxy1 (f :: Type -> Type)quickcheck-classes-base Test.QuickCheck.Classes.Base In older versions of GHC, Proxy is not poly-kinded, so we provide Proxy1.
Proxy1 :: Proxy1 (f :: Type -> Type)quickcheck-classes-base Test.QuickCheck.Classes.Base No documentation available.
data
Proxy2 (f :: Type -> Type -> Type)quickcheck-classes-base Test.QuickCheck.Classes.Base In older versions of GHC, Proxy is not poly-kinded, so we provide Proxy2.
Proxy2 :: Proxy2 (f :: Type -> Type -> Type)quickcheck-classes-base Test.QuickCheck.Classes.Base No documentation available.
type
Pi (t :: Type -> Type) = t ~> Identityselective Control.Selective.Multi A product type where the payload has the type specified with the tag.
Pure :: forall a (f :: Type -> Type) . a -> Select f aselective Control.Selective.Rigid.Free No documentation available.
Pure :: forall a (f :: Type -> Type) . a -> Select f aselective Control.Selective.Rigid.Freer No documentation available.
-
singletons Data.Singletons 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