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.

  1. allowOmittedFields :: Options -> Bool

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

  2. allNullaryToStringTag :: Options -> Bool

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

  3. allowOmittedFields :: Options -> Bool

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

  4. allWriteMode :: FileMode

    directory System.Directory.Internal

    No documentation available.

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

    criterion Criterion.Types

    No documentation available.

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

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

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

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

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

Page 75 of many | Previous | Next