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.
-
directory System.Directory.Internal No documentation available.
allocEnv :: Benchmarkable -> Int64 -> IO acriterion Criterion.Types No documentation available.
allOf :: Getting All s a -> (a -> Bool) -> s -> Boollens 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
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
allOf :: Getting All s a -> (a -> Bool) -> s -> Boollens 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
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
-
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.
allC :: forall (m :: Type -> Type) a o . Monad m => (a -> Bool) -> ConduitT a o m Boolconduit Conduit Check that all values in the stream return True. Subject to shortcut logic: at the first False, consumption of the stream will stop.
-
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.
allNewBuffersStrategy :: Int -> BufferAllocStrategyconduit 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.
allocateAcquire :: MonadResource m => Acquire a -> m (ReleaseKey, a)conduit Conduit Allocate a resource and register an action with the MonadResource to free the resource.
-
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