Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
module GI.GLib.Structs.
Allocator No description available in the introspection data.
-
gi-glib GI.GLib.Structs.Allocator Memory-managed wrapper type.
Allocator :: ManagedPtr Allocator -> Allocatorgi-glib GI.GLib.Structs.Allocator No documentation available.
-
tls Network.TLS Extended Main Secret is allowed
-
hmatrix Numeric.LinearAlgebra.Devel No documentation available.
-
hmatrix Numeric.LinearAlgebra.Devel No documentation available.
-
weigh Weigh Total bytes allocated
-
errors Control.Error.Util Run multiple Either computations and succeed if all of them succeed mappends all successes or failures
AllE :: Either e r -> AllE e rerrors Control.Error.Util No documentation available.
type
All2 (c :: k -> Constraint) = All All cgenerics-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 asf :: 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)'.