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.
notElem :: forall a (n :: Nat) . (Unbox a, Eq a) => a -> Vector n a -> Boolvector-sized Data.Vector.Unboxed.Sized O(n) Check if the vector does not contain an element (inverse of elem).
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.
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.
noteExplicitOff :: C event => Channel -> (Velocity, Pitch, Bool) -> eventmidi Sound.MIDI.Message.Class.Construct Like note, but converts NoteOn p 0 to NoteOff p 64. See explicitNoteOff.
noteImplicitOff :: C event => Channel -> (Velocity, Pitch, Bool) -> eventmidi Sound.MIDI.Message.Class.Construct Like note, but converts NoteOff p 64 to NoteOn p 0. See implicitNoteOff.
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.
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.
notElem :: Monad m => Word8 -> Producer ByteString m () -> m Boolpipes-bytestring Pipes.ByteString Determine whether all elements in the byte stream do not match the given Word8
notElem :: (Foldable t, Eq a) => a -> t a -> Boolprotolude 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 *
notElem :: (Foldable t, Eq a) => a -> t a -> Boolghc-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 *