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. allocCopy :: AllocationInfo -> AllocationOp

    haskell-gi Data.GI.CodeGen.API

    No documentation available.

  2. allocFree :: AllocationInfo -> AllocationOp

    haskell-gi Data.GI.CodeGen.API

    No documentation available.

  3. allocCalloc :: AllocationInfo -> AllocationOp

    haskell-gi Data.GI.GIR.Allocation

    No documentation available.

  4. allocCopy :: AllocationInfo -> AllocationOp

    haskell-gi Data.GI.GIR.Allocation

    No documentation available.

  5. allocFree :: AllocationInfo -> AllocationOp

    haskell-gi Data.GI.GIR.Allocation

    No documentation available.

  6. allNewBuffersStrategy :: Int -> BufferAllocStrategy

    streaming-commons Data.Streaming.ByteString.Builder

    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

  7. allocBuffer :: Int -> IO Buffer

    streaming-commons Data.Streaming.ByteString.Builder

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

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

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

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

Page 88 of many | Previous | Next