Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

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

  1. notElem :: (MonoFoldable mono, Eq (Element mono)) => Element mono -> mono -> Bool

    mono-traversable Data.MonoTraversable.Unprefixed

    Synonym for onotElem

  2. notElem :: Word8 -> ByteString -> Bool

    rio RIO.ByteString

    O(n) notElem is the inverse of elem

  3. notElem :: Word8 -> ByteString -> Bool

    rio RIO.ByteString.Lazy

    O(n) notElem is the inverse of elem

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

    rio RIO.List

    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 *
    

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

    rio RIO.Prelude

    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 *
    

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

    rio RIO.Vector

    No documentation available.

  7. notElem :: Eq a => a -> Vector a -> Bool

    rio RIO.Vector.Boxed

    No documentation available.

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

    rio RIO.Vector.Storable

    No documentation available.

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

    rio RIO.Vector.Unboxed

    No documentation available.

  10. noteT :: forall (m :: Type -> Type) a b . Monad m => a -> MaybeT m b -> ExceptT a m b

    errors Control.Error.Util

    Tag the Nothing value of a MaybeT

Page 10 of many | Previous | Next