Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. allNewBuffersStrategy :: Int -> BufferAllocStrategy

    streaming-commons Data.Streaming.ByteString.Builder.Buffer

    The simplest buffer allocation strategy: whenever a buffer is requested, allocate a new one that is big enough for the next build step to execute. NOTE that this allocation strategy may spill quite some memory upon direct insertion of a bytestring by the builder. Thats no problem for garbage collection, but it may lead to unreasonably high memory consumption in special circumstances. Since 0.1.10.0

  2. allocBuffer :: Int -> IO Buffer

    streaming-commons Data.Streaming.ByteString.Builder.Buffer

    allocBuffer size allocates a new buffer of size size. Since 0.1.10.0

  3. allOf :: forall k (is :: IxList) s a . Is k A_Fold => Optic' k is s a -> (a -> Bool) -> s -> Bool

    optics-core Optics.Fold

    Returns True if every target of a Fold satisfies a predicate.

    >>> allOf each (>=3) (4,5)
    True
    
    >>> allOf folded (>=2) [1..10]
    False
    
    allallOf folded
    

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

    gi-glib GI.GLib.Structs.Allocator

    No description available in the introspection data.

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

    monad-loops Control.Monad.Loops

    short-circuit all with a "monadic predicate".

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

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

    HsOpenSSL OpenSSL.BN

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

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

  9. allExtensions :: BuildInfo -> [Extension]

    Cabal-syntax Distribution.Types.BuildInfo

    The Extensions that are used somewhere by this component

  10. allLanguages :: BuildInfo -> [Language]

    Cabal-syntax Distribution.Types.BuildInfo

    The Languages used by this component

Page 89 of many | Previous | Next