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 :: Eq a => a -> [a] -> Bool

    base GHC.List

    notElem is the negation of elem.

    Examples

    >>> 3 `notElem` []
    True
    
    >>> 3 `notElem` [1,2]
    True
    
    >>> 3 `notElem` [1,2,3,4,5]
    False
    
    >>> 3 `notElem` [1..]
    False
    
    >>> 3 `notElem` [4..]
    * Hangs forever *
    

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

    bytestring Data.ByteString

    O(n) notElem is the inverse of elem

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

    bytestring Data.ByteString.Char8

    O(n) notElem is the inverse of elem

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

    bytestring Data.ByteString.Lazy

    O(n) notElem is the inverse of elem

  5. notElem :: Char -> ByteString -> Bool

    bytestring Data.ByteString.Lazy.Char8

    O(n) notElem is the inverse of elem

  6. noteOutliers :: Outliers -> Criterion ()

    criterion Criterion.Analysis

    Display a report of the Outliers present in a Sample.

  7. notElemOf :: Eq a => Getting All s a -> a -> s -> Bool

    lens Control.Lens.Combinators

    Does the element not occur anywhere within a given Fold of the structure?

    >>> notElemOf each 'd' ('a','b','c')
    True
    
    >>> notElemOf each 'a' ('a','b','c')
    False
    
    notElemnotElemOf folded
    
    notElemOf :: Eq a => Getter s a     -> a -> s -> Bool
    notElemOf :: Eq a => Fold s a       -> a -> s -> Bool
    notElemOf :: Eq a => Iso' s a       -> a -> s -> Bool
    notElemOf :: Eq a => Lens' s a      -> a -> s -> Bool
    notElemOf :: Eq a => Traversal' s a -> a -> s -> Bool
    notElemOf :: Eq a => Prism' s a     -> a -> s -> Bool
    

  8. notElemOf :: Eq a => Getting All s a -> a -> s -> Bool

    lens Control.Lens.Fold

    Does the element not occur anywhere within a given Fold of the structure?

    >>> notElemOf each 'd' ('a','b','c')
    True
    
    >>> notElemOf each 'a' ('a','b','c')
    False
    
    notElemnotElemOf folded
    
    notElemOf :: Eq a => Getter s a     -> a -> s -> Bool
    notElemOf :: Eq a => Fold s a       -> a -> s -> Bool
    notElemOf :: Eq a => Iso' s a       -> a -> s -> Bool
    notElemOf :: Eq a => Lens' s a      -> a -> s -> Bool
    notElemOf :: Eq a => Traversal' s a -> a -> s -> Bool
    notElemOf :: Eq a => Prism' s a     -> a -> s -> Bool
    

  9. notElemC :: forall (m :: Type -> Type) a o . (Monad m, Eq a) => a -> ConduitT a o m Bool

    conduit Conduit

    Are no values in the stream equal to the given value? Stops consuming as soon as a match is found.

  10. notElemCE :: forall (m :: Type -> Type) seq o . (Monad m, IsSequence seq, Eq (Element seq)) => Element seq -> ConduitT seq o m Bool

    conduit Conduit

    Are no elements in the chunked stream equal to the given element? Stops consuming as soon as a match is found.

Page 7 of many | Previous | Next