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.

  1. allocatorFree :: (HasCallStack, MonadIO m) => Allocator -> m ()

    gi-glib GI.GLib.Structs.Allocator

    No description available in the introspection data.

  2. allM :: Monad m => (a -> m Bool) -> [a] -> m Bool

    monad-loops Control.Monad.Loops

    short-circuit all with a "monadic predicate".

  3. allPM :: Monad m => [a -> m Bool] -> a -> m Bool

    monad-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.

  4. allocaBN :: (BigNum -> IO a) -> IO a

    HsOpenSSL OpenSSL.BN

    allocaBN f allocates a BigNum and computes f. Then it frees the BigNum.

  5. allOf :: Getting All s a -> (a -> Bool) -> s -> Bool

    diagrams-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
    
    allallOf 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
    

  6. allExtensions :: BuildInfo -> [Extension]

    Cabal-syntax Distribution.Types.BuildInfo

    The Extensions that are used somewhere by this component

  7. allLanguages :: BuildInfo -> [Language]

    Cabal-syntax Distribution.Types.BuildInfo

    The Languages used by this component

  8. allCondTrees :: Applicative f => (forall a . () => CondTree ConfVar [Dependency] a -> f (CondTree ConfVar [Dependency] a)) -> GenericPackageDescription -> f GenericPackageDescription

    Cabal-syntax Distribution.Types.GenericPackageDescription.Lens

    No documentation available.

  9. allBuildDepends :: PackageDescription -> [Dependency]

    Cabal-syntax Distribution.Types.PackageDescription

    Get the combined build-depends entries of all components.

  10. allBuildInfo :: PackageDescription -> [BuildInfo]

    Cabal-syntax Distribution.Types.PackageDescription

    All BuildInfo in the PackageDescription: libraries, executables, test-suites and benchmarks. Useful for implementing package checks.

Page 89 of many | Previous | Next