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. newtype Note

    tidal Sound.Tidal.Boot

    Note is Double, but with a different parser

  2. Note :: Double -> Note

    tidal Sound.Tidal.Boot

    No documentation available.

  3. data Note

    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"

  4. Note :: [Alist] -> Note

    bbdb Database.BBDB

    No documentation available.

  5. data Note

    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).

  6. data Note

    fdo-notify DBus.Notify

    Contents of a notification

  7. Note :: String -> Maybe Icon -> String -> Maybe Body -> [(Action, String)] -> [Hint] -> Timeout -> Note

    fdo-notify DBus.Notify

    No documentation available.

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

    base 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 *
    

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

    base 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 *
    

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

    base 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 *
    

Page 6 of many | Previous | Next