Hoogle Search
Within LTS Haskell 24.10 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
allowOmittedFields :: Options -> Boolaeson Data.Aeson If True, missing fields of a record will be filled with omittedField values (if they are Just). If False, all fields will required to present in the record object.
allNullaryToStringTag :: Options -> Boolaeson Data.Aeson.Types If True the constructors of a datatype, with all nullary constructors, will be encoded to just a string with the constructor tag. If False the encoding will always follow the sumEncoding.
allowOmittedFields :: Options -> Boolaeson Data.Aeson.Types If True, missing fields of a record will be filled with omittedField values (if they are Just). If False, all fields will required to present in the record object.
-
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.