Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. notElem :: Eq a => a -> NonEmptyVector a -> Bool

    nonempty-vector Data.Vector.NonEmpty

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

    >>> notElem 1 $ unsafeFromList [1..3]
    False
    
    >>> notElem 4 $ unsafeFromList [1..3]
    True
    

  2. notEvent :: Notification -> NeovimEventId

    nvim-hs Neovim.Plugin.IPC.Classes

    Event name of the notification.

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

    LambdaHack Game.LambdaHack.Core.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 *
    

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

    LambdaHack Game.LambdaHack.Core.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 *
    

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

    cabal-install-solver Distribution.Solver.Compat.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 *
    

  6. notElemC :: forall (m :: Type -> Type) a o . (Monad m, Eq a) => a -> ConduitT a o m Bool

    classy-prelude-conduit ClassyPrelude.Conduit

    Are no values in the stream equal to the given value? Stops consuming as soon as a match is found.

  7. notElemCE :: forall (m :: Type -> Type) seq o . (Monad m, IsSequence seq, Eq (Element seq)) => Element seq -> ConduitT seq o m Bool

    classy-prelude-conduit ClassyPrelude.Conduit

    Are no elements in the chunked stream equal to the given element? Stops consuming as soon as a match is found.

  8. notes :: Fake Text

    fakedata Faker.Coffee

    No documentation available.

  9. notEnoughSpace :: Ptr Word8 -> S -> IO a

    flat Flat.Decoder.Types

    No documentation available.

  10. noTextBufferDeserializeFunc :: Maybe TextBufferDeserializeFunc

    gi-gtk3 GI.Gtk.Callbacks

    A convenience synonym for Nothing :: Maybe TextBufferDeserializeFunc.

Page 18 of many | Previous | Next