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.

  1. type family AllHave (f :: k -> Constraint) (xs :: [k])

    relude Relude.Extra.Type

    Builds combined Constraint by applying Constraint constructor to all elements of type-level list.

    >>> :kind! AllHave Show '[Int, Text, Double]
    AllHave Show '[Int, Text, Double] :: Constraint
    = (Show Int, (Show Text, (Show Double, () :: Constraint)))
    
    which is equivalent to:
    (Show Int, Show Text, Show Double) :: Constraint
    

  2. AllowAmbiguousTypes :: Extension

    ghc-boot-th GHC.LanguageExtensions.Type

    No documentation available.

  3. type AllRepsMatch (f :: k -> Type) (xs :: [k]) (g :: j -> Type) (ys :: [j]) = (AllRepsMatch_ f xs g ys, AllRepsMatch_ g ys f xs)

    vinyl Data.Vinyl.Core

    AllRepsMatch f xs g ys means that xs and ys have the same lengths, and that mapping f over xs and g over ys produces lists whose corresponding elements are Coercible with each other. For example, the following hold: AllRepsMatch Proxy '[1,2,3] Proxy '[4,5,6] AllRepsMatch Sum '[Int,Word] Identity '[Min Int, Max Word]

  4. type family AllRepsMatch_ (f :: j -> Type) (xs :: [j]) (g :: k -> Type) (ys :: [k])

    vinyl Data.Vinyl.Core

    No documentation available.

  5. type family AllAllSat (cs :: k) (ts :: [k1])

    vinyl Data.Vinyl.TypeLevel

    Constraint that all types in a type-level list satisfy each constraint from a list of constraints. AllAllSat cs ts should be equivalent to AllConstrained (AllSatisfied cs) ts if partial application of type families were legal.

  6. type family AllConstrained (c :: u -> Constraint) (ts :: [u])

    vinyl Data.Vinyl.TypeLevel

    Constraint that all types in a type-level list satisfy a constraint.

  7. class AllSatisfied (cs :: k) (t :: k1)

    vinyl Data.Vinyl.TypeLevel

    Constraint that each Constraint in a type-level list is satisfied by a particular type.

  8. AllowInsecure :: OnInsecure

    warp-tls Network.Wai.Handler.WarpTLS

    No documentation available.

  9. AllowInsecure :: OnInsecure

    warp-tls Network.Wai.Handler.WarpTLS.Internal

    No documentation available.

  10. data AllSym0 (a1 :: TyFun a ~> Bool t a ~> Bool)

    singletons-base Data.Foldable.Singletons

    No documentation available.

Page 36 of many | Previous | Next