Hoogle Search

Within LTS Haskell 24.60 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. module GI.GLib.Structs.Allocator

    No description available in the introspection data.

  2. newtype Allocator

    gi-glib GI.GLib.Structs.Allocator

    Memory-managed wrapper type.

  3. Allocator :: ManagedPtr Allocator -> Allocator

    gi-glib GI.GLib.Structs.Allocator

    No documentation available.

  4. AllowEMS :: EMSMode

    tls Network.TLS

    Extended Main Secret is allowed

  5. AllCols :: ColRange

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  6. AllRows :: RowRange

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  7. Allocated :: Column

    weigh Weigh

    Total bytes allocated

  8. type All2 (c :: k -> Constraint) = All All c

    generics-sop Generics.SOP

    Require a constraint for every element of a list of lists. If you have a datatype that is indexed over a type-level list of lists, then you can use All2 to indicate that all elements of the inner lists must satisfy a given constraint. Example: The constraint

    All2 Eq '[ '[ Int ], '[ Bool, Char ] ]
    
    is equivalent to the constraint
    (Eq Int, Eq Bool, Eq Char)
    
    Example: A type signature such as
    f :: All2 Eq xss => SOP I xs -> ...
    
    means that f can assume that all elements of the sum of product satisfy Eq. Since 0.4.0.0, this is merely a synonym for 'All (All c)'.

  9. type family AllN (h :: k -> Type -> l -> Type) (c :: k -> Constraint) :: l -> Constraint

    generics-sop Generics.SOP

    A generalization of All and All2. The family AllN expands to All or All2 depending on whether the argument is indexed by a list or a list of lists.

  10. class (SListI xs, SListI ys, SameShapeAs xs ys, SameShapeAs ys xs, AllZipF c xs ys) => AllZip (c :: a -> b -> Constraint) (xs :: [a]) (ys :: [b])

    generics-sop Generics.SOP

    Require a constraint pointwise for every pair of elements from two lists. Example: The constraint

    AllZip (~) '[ Int, Bool, Char ] '[ a, b, c ]
    
    is equivalent to the constraint
    (Int ~ a, Bool ~ b, Char ~ c)
    

Page 32 of many | Previous | Next