Hoogle Search

Within LTS Haskell 23.24 (ghc-9.8.4)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. newtype All

    base Data.Monoid

    Boolean monoid under conjunction (&&).

    All x <> All y = All (x && y)
    

    Examples

    >>> All True <> mempty <> All False)
    All {getAll = False}
    
    >>> mconcat (map (\x -> All (even x)) [2,4,6,7,8])
    All {getAll = False}
    
    >>> All True <> mempty
    All {getAll = True}
    

  2. All :: Bool -> All

    base Data.Monoid

    No documentation available.

  3. newtype All

    base Data.Semigroup

    Boolean monoid under conjunction (&&).

    All x <> All y = All (x && y)
    

    Examples

    >>> All True <> mempty <> All False)
    All {getAll = False}
    
    >>> mconcat (map (\x -> All (even x)) [2,4,6,7,8])
    All {getAll = False}
    
    >>> All True <> mempty
    All {getAll = True}
    

  4. All :: Bool -> All

    base Data.Semigroup

    No documentation available.

  5. module Test.QuickCheck.All

    Note: the contents of this module are re-exported by Test.QuickCheck. You do not need to import it directly. Test all properties in the current module, using Template Haskell. You need to have a {-# LANGUAGE TemplateHaskell #-} pragma in your module for any of these to work.

  6. newtype All

    base-compat Data.Monoid.Compat

    Boolean monoid under conjunction (&&).

    All x <> All y = All (x && y)
    

    Examples

    >>> All True <> mempty <> All False)
    All {getAll = False}
    
    >>> mconcat (map (\x -> All (even x)) [2,4,6,7,8])
    All {getAll = False}
    
    >>> All True <> mempty
    All {getAll = True}
    

  7. All :: Bool -> All

    base-compat Data.Monoid.Compat

    No documentation available.

  8. newtype All

    base-compat Data.Semigroup.Compat

    Boolean monoid under conjunction (&&).

    All x <> All y = All (x && y)
    

    Examples

    >>> All True <> mempty <> All False)
    All {getAll = False}
    
    >>> mconcat (map (\x -> All (even x)) [2,4,6,7,8])
    All {getAll = False}
    
    >>> All True <> mempty
    All {getAll = True}
    

  9. All :: Bool -> All

    base-compat Data.Semigroup.Compat

    No documentation available.

  10. newtype All

    generic-deriving Generics.Deriving.Monoid

    Boolean monoid under conjunction (&&).

    All x <> All y = All (x && y)
    

    Examples

    >>> All True <> mempty <> All False)
    All {getAll = False}
    
    >>> mconcat (map (\x -> All (even x)) [2,4,6,7,8])
    All {getAll = False}
    
    >>> All True <> mempty
    All {getAll = True}
    

Page 1 of many | Next