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.
noTextEvent :: Maybe TextEventjsaddle-dom JSDOM.Types No documentation available.
noTextMetrics :: Maybe TextMetricsjsaddle-dom JSDOM.Types No documentation available.
noTextTrack :: Maybe TextTrackjsaddle-dom JSDOM.Types No documentation available.
noTextTrackCue :: Maybe TextTrackCuejsaddle-dom JSDOM.Types No documentation available.
noTextTrackCueList :: Maybe TextTrackCueListjsaddle-dom JSDOM.Types No documentation available.
noTextTrackList :: Maybe TextTrackListjsaddle-dom JSDOM.Types No documentation available.
notElem :: (Foldable t, Eq a) => a -> t a -> Boollistsafe 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 *
notElemM :: (Eq a, Monad m) => a -> [a] -> m Boolmonadlist Control.Monad.ListM No documentation available.
notElem :: (Foldable t, Eq a) => a -> t a -> Boolverset 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 *
notElem :: (Foldable t, Eq a) => a -> t a -> Boolxmonad-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 *