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 :: forall a (n :: Nat) . (Unbox a, Eq a) => a -> Vector n a -> Bool

    vector-sized Data.Vector.Unboxed.Sized

    O(n) Check if the vector does not contain an element (inverse of elem).

  2. noteExplicitOff :: C event => Channel -> event -> Maybe (Velocity, Pitch, Bool)

    midi Sound.MIDI.Message.Class.Check

    Like note, but converts NoteOn p 0 to NoteOff p 64. See explicitNoteOff.

  3. noteImplicitOff :: C event => Channel -> event -> Maybe (Velocity, Pitch, Bool)

    midi Sound.MIDI.Message.Class.Check

    Like note, but converts NoteOff p 64 to NoteOn p 0. See implicitNoteOff.

  4. noteExplicitOff :: C event => Channel -> (Velocity, Pitch, Bool) -> event

    midi Sound.MIDI.Message.Class.Construct

    Like note, but converts NoteOn p 0 to NoteOff p 64. See explicitNoteOff.

  5. noteImplicitOff :: C event => Channel -> (Velocity, Pitch, Bool) -> event

    midi Sound.MIDI.Message.Class.Construct

    Like note, but converts NoteOff p 64 to NoteOn p 0. See implicitNoteOff.

  6. noteExplicitOff :: C event => event -> Maybe (Channel, (Velocity, Pitch, Bool))

    midi Sound.MIDI.Message.Class.Query

    Like note, but converts NoteOn p 0 to NoteOff p 64. See explicitNoteOff.

  7. noteImplicitOff :: C event => event -> Maybe (Channel, (Velocity, Pitch, Bool))

    midi Sound.MIDI.Message.Class.Query

    Like note, but converts NoteOff p 64 to NoteOn p 0. See implicitNoteOff.

  8. notElem :: Monad m => Word8 -> Producer ByteString m () -> m Bool

    pipes-bytestring Pipes.ByteString

    Determine whether all elements in the byte stream do not match the given Word8

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

    protolude Protolude

    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

    ghc-internal GHC.Internal.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 12 of many | Previous | Next