Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
fieldCallback :: Field -> Maybe Callbackhaskell-gi Data.GI.GIR.Field No documentation available.
fnCallable :: Function -> Callablehaskell-gi Data.GI.GIR.Function No documentation available.
ifAllocationInfo :: Interface -> AllocationInfohaskell-gi Data.GI.GIR.Interface No documentation available.
methodCallable :: Method -> Callablehaskell-gi Data.GI.GIR.Method No documentation available.
parseAllChildrenWithLocalName :: Text -> Parser a -> Parser [a]haskell-gi Data.GI.GIR.Parser Parse all subelements with the given local name.
sigCallable :: Signal -> Callablehaskell-gi Data.GI.GIR.Signal No documentation available.
structAllocationInfo :: Struct -> AllocationInfohaskell-gi Data.GI.GIR.Struct No documentation available.
unionAllocationInfo :: Union -> AllocationInfohaskell-gi Data.GI.GIR.Union No documentation available.
iall :: FoldableWithIndex i f => (i -> a -> Bool) -> f a -> Boolindexed-traversable Data.Foldable.WithIndex Return whether or not all elements in a container satisfy a predicate, with access to the index i. When you don't need access to the index then all is more flexible in what it accepts.
all ≡ iall . const
integralLaws :: (Integral a, Arbitrary a, Show a) => Proxy a -> Lawsquickcheck-classes Test.QuickCheck.Classes Tests the following properties:
- Quotient Remainder (quot x y) * y + (rem x y) ≡ x
- Division Modulus (div x y) * y + (mod x y) ≡ x
- Integer Roundtrip fromInteger (toInteger x) ≡ x
- QuotRem is (Quot, Rem) quotRem x y ≡ (quot x y, rem x y)
- DivMod is (Div, Mod) divMod x y ≡ (div x y, mod x y)