Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. notElem :: (Monad m, Eq a) => a -> Stream m a -> m Bool

    rebase Rebase.Data.Vector.Fusion.Stream.Monadic

    Inverse of elem

  2. notElem :: (Vector v a, Eq a) => a -> v a -> Bool

    rebase Rebase.Data.Vector.Generic

    No documentation available.

  3. notElem :: (Prim a, Eq a) => a -> Vector a -> Bool

    rebase Rebase.Data.Vector.Primitive

    No documentation available.

  4. notElem :: (Storable a, Eq a) => a -> Vector a -> Bool

    rebase Rebase.Data.Vector.Storable

    No documentation available.

  5. notElem :: (Unbox a, Eq a) => a -> Vector a -> Bool

    rebase Rebase.Data.Vector.Unboxed

    No documentation available.

  6. notEqual :: (Eq a, Show a) => a -> a -> Assertion

    chell Test.Chell

    Assert that two values are not equal.

  7. notes :: CliOpts -> Journal -> IO ()

    hledger Hledger.Cli.Commands.Notes

    The notes command.

  8. notesmode :: Mode RawOpts

    hledger Hledger.Cli.Commands.Notes

    Command line options for this command.

  9. notEqualTo :: HasEqAsymmetric a b => a -> b -> EqCompareType a b

    mixed-types-num Numeric.MixedTypes.Eq

    No documentation available.

  10. notElem :: (Foldable t, Eq a) => a -> t a -> Bool

    mixed-types-num Numeric.MixedTypes.PreludeHiding

    notElem is the negation of elem.

    Examples

    Basic usage:
    >>> 3 `notElem` []
    True
    
    >>> 3 `notElem` [1,2]
    True
    
    >>> 3 `notElem` [1,2,3,4,5]
    False
    
    For infinite structures, notElem terminates if the value exists at a finite distance from the left side of the structure:
    >>> 3 `notElem` [1..]
    False
    
    >>> 3 `notElem` ([4..] ++ [3])
    * Hangs forever *
    

Page 17 of many | Previous | Next