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. allWriteMode :: FileMode

    directory System.Directory.Internal

    No documentation available.

  2. allocEnv :: Benchmarkable -> Int64 -> IO a

    criterion Criterion.Types

    No documentation available.

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

    lens Control.Lens.Combinators

    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
    

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

    lens Control.Lens.Fold

    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
    

  5. allPositional :: InfoMod a

    optparse-applicative Options.Applicative.Builder

    Disable parsing of regular options completely. All options and arguments will be treated as a positional arguments. Obviously not recommended in general as options will be unreachable. This is the same behaviour one sees after the "--" pseudo-argument.

  6. allC :: forall (m :: Type -> Type) a o . Monad m => (a -> Bool) -> ConduitT a o m Bool

    conduit Conduit

    Check that all values in the stream return True. Subject to shortcut logic: at the first False, consumption of the stream will stop.

  7. allCE :: forall (m :: Type -> Type) mono o . (Monad m, MonoFoldable mono) => (Element mono -> Bool) -> ConduitT mono o m Bool

    conduit Conduit

    Check that all elements in the chunked stream return True. Subject to shortcut logic: at the first False, consumption of the stream will stop.

  8. allNewBuffersStrategy :: Int -> BufferAllocStrategy

    conduit Conduit

    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.

  9. allocateAcquire :: MonadResource m => Acquire a -> m (ReleaseKey, a)

    conduit Conduit

    Allocate a resource and register an action with the MonadResource to free the resource.

  10. allE :: forall (m :: Type -> Type) mono o . (Monad m, MonoFoldable mono) => (Element mono -> Bool) -> ConduitT mono o m Bool

    conduit Data.Conduit.Combinators

    Check that all elements in the chunked stream return True. Subject to shortcut logic: at the first False, consumption of the stream will stop. Subject to fusion

Page 75 of many | Previous | Next