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.
-
tidal Sound.Tidal.Boot Note is Double, but with a different parser
-
tidal Sound.Tidal.Boot No documentation available.
-
bbdb Database.BBDB The Note field of a BBDB record is just a list of associations. If you don't provide a your own key, the BBDB will use the word "note"
-
bbdb Database.BBDB No documentation available.
-
essence-of-live-coding-pulse LiveCoding.Pulse A basic musical note (western traditional notation, german nomenclature). Assumes equal temperament and removes enharmonic equivalents, i.e. there is only Dis (= D sharp) but not Eb (= E flat).
-
fdo-notify DBus.Notify Contents of a notification
-
fdo-notify DBus.Notify No documentation available.
notElem :: (Foldable t, Eq a) => a -> t a -> Boolbase 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 *
notElem :: (Foldable t, Eq a) => a -> t a -> Boolbase Data.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 *
notElem :: (Foldable t, Eq a) => a -> t a -> Boolbase Data.Foldable 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 *