Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. any :: SideEffects

    binaryen Binaryen.SideEffects

    No documentation available.

  2. any :: AsEnumSet a => (a -> Bool) -> EnumSet a -> Bool

    bitwise-enum Data.Enum.Set

    O(n). Check if any element satisfies some predicate.

  3. any :: (FiniteBits w, Num w, Enum a) => (a -> Bool) -> EnumSet w a -> Bool

    bitwise-enum Data.Enum.Set.Base

    O(n). Check if any element satisfies some predicate.

  4. any :: Foldable t => (a -> Bool) -> t a -> Bool

    calligraphy Calligraphy.Prelude

    Determines whether any element of the structure satisfies the predicate.

    Examples

    Basic usage:
    >>> any (> 3) []
    False
    
    >>> any (> 3) [1,2]
    False
    
    >>> any (> 3) [1,2,3,4,5]
    True
    
    >>> any (> 3) [1..]
    True
    
    >>> any (> 3) [0, -1..]
    * Hangs forever *
    

  5. any :: Foldable t => (a -> Bool) -> t a -> Bool

    clash-prelude Clash.HaskellPrelude

    Determines whether any element of the structure satisfies the predicate.

    Examples

    Basic usage:
    >>> any (> 3) []
    False
    
    >>> any (> 3) [1,2]
    False
    
    >>> any (> 3) [1,2,3,4,5]
    True
    
    >>> any (> 3) [1..]
    True
    
    >>> any (> 3) [0, -1..]
    * Hangs forever *
    

  6. any :: (Boolean b, Foldable t) => (a -> b) -> t a -> b

    cond Data.Algebra.Boolean

    The logical disjunction of the mapping of a function over several values.

  7. any :: Foldable t => (a -> Bool) -> t a -> Bool

    dimensional Numeric.Units.Dimensional.Prelude

    Determines whether any element of the structure satisfies the predicate.

    Examples

    Basic usage:
    >>> any (> 3) []
    False
    
    >>> any (> 3) [1,2]
    False
    
    >>> any (> 3) [1,2,3,4,5]
    True
    
    >>> any (> 3) [1..]
    True
    
    >>> any (> 3) [0, -1..]
    * Hangs forever *
    

  8. any :: Foldable t => (a -> Bool) -> t a -> Bool

    distribution-opensuse OpenSuse.Prelude

    Determines whether any element of the structure satisfies the predicate.

    Examples

    Basic usage:
    >>> any (> 3) []
    False
    
    >>> any (> 3) [1,2]
    False
    
    >>> any (> 3) [1,2,3,4,5]
    True
    
    >>> any (> 3) [1..]
    True
    
    >>> any (> 3) [0, -1..]
    * Hangs forever *
    

  9. any :: (Boolean b, Foldable t) => (a -> b) -> t a -> b

    ersatz Ersatz.Bit

    The logical disjunction of the mapping of a function over several values.

  10. any :: Bool <-> Any

    invertible Data.Invertible.Monoid

    (Un)wrap the Any monoid.

Page 21 of many | Previous | Next