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. noTextEvent :: Maybe TextEvent

    jsaddle-dom JSDOM.Types

    No documentation available.

  2. noTextMetrics :: Maybe TextMetrics

    jsaddle-dom JSDOM.Types

    No documentation available.

  3. noTextTrack :: Maybe TextTrack

    jsaddle-dom JSDOM.Types

    No documentation available.

  4. noTextTrackCue :: Maybe TextTrackCue

    jsaddle-dom JSDOM.Types

    No documentation available.

  5. noTextTrackCueList :: Maybe TextTrackCueList

    jsaddle-dom JSDOM.Types

    No documentation available.

  6. noTextTrackList :: Maybe TextTrackList

    jsaddle-dom JSDOM.Types

    No documentation available.

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

    listsafe Data.List.Safe

    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 *
    

  8. notElemM :: (Eq a, Monad m) => a -> [a] -> m Bool

    monadlist Control.Monad.ListM

    No documentation available.

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

    verset Verset

    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 *
    

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

    xmonad-contrib XMonad.Config.Prime

    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 61 of many | Previous | Next