Hoogle Search
Within LTS Haskell 24.42 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
allocatorFree :: (HasCallStack, MonadIO m) => Allocator -> m ()gi-glib GI.GLib.Structs.Allocator No description available in the introspection data.
allM :: Monad m => (a -> m Bool) -> [a] -> m Boolmonad-loops Control.Monad.Loops short-circuit all with a "monadic predicate".
allPM :: Monad m => [a -> m Bool] -> a -> m Boolmonad-loops Control.Monad.Loops short-circuit all with a list of "monadic predicates". Tests the value presented against each predicate in turn until one fails, then returns False. if none fail, returns True.
allocaBN :: (BigNum -> IO a) -> IO aHsOpenSSL OpenSSL.BN allocaBN f allocates a BigNum and computes f. Then it frees the BigNum.
allOf :: Getting All s a -> (a -> Bool) -> s -> Booldiagrams-lib Diagrams.Prelude Returns True if every target of a Fold satisfies a predicate.
>>> allOf both (>=3) (4,5) True >>> allOf folded (>=2) [1..10] False
all ≡ allOf folded
iallOf l = allOf l . Indexed
allOf :: Getter s a -> (a -> Bool) -> s -> Bool allOf :: Fold s a -> (a -> Bool) -> s -> Bool allOf :: Lens' s a -> (a -> Bool) -> s -> Bool allOf :: Iso' s a -> (a -> Bool) -> s -> Bool allOf :: Traversal' s a -> (a -> Bool) -> s -> Bool allOf :: Prism' s a -> (a -> Bool) -> s -> Bool
allExtensions :: BuildInfo -> [Extension]Cabal-syntax Distribution.Types.BuildInfo The Extensions that are used somewhere by this component
allLanguages :: BuildInfo -> [Language]Cabal-syntax Distribution.Types.BuildInfo The Languages used by this component
-
Cabal-syntax Distribution.Types.GenericPackageDescription.Lens No documentation available.
allBuildDepends :: PackageDescription -> [Dependency]Cabal-syntax Distribution.Types.PackageDescription Get the combined build-depends entries of all components.
allBuildInfo :: PackageDescription -> [BuildInfo]Cabal-syntax Distribution.Types.PackageDescription All BuildInfo in the PackageDescription: libraries, executables, test-suites and benchmarks. Useful for implementing package checks.