Hoogle Search

Within LTS Haskell 24.31 (ghc-9.10.3)

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

  1. notEqC :: Sound8 -> Sound8 -> Bool

    aftovolio Aftovolio.Ukrainian.Syllable

    Binary function-predicate notEqC checks whether its arguments are not the same consonant sound representations (not taking palatalization into account).

  2. notEqCTup :: Array Int (Int8, Bool) -> Sound8 -> Sound8 -> Bool

    aftovolio Aftovolio.Ukrainian.Syllable

    Binary function-predicate notEqC checks whether its arguments are not the same consonant sound representations (not taking palatalization into account).

  3. notElem :: a -> Bloom a -> Bool

    bloomfilter Data.BloomFilter

    Query an immutable Bloom filter for non-membership. If the value is present, return False. If the value is not present, there is still some possibility that False will be returned.

  4. notElem :: a -> Bloom a -> Bool

    bloomfilter Data.BloomFilter.Easy

    Query an immutable Bloom filter for non-membership. If the value is present, return False. If the value is not present, there is still some possibility that False will be returned.

  5. noTestsProblem :: TargetSelector -> TargetProblem TestProblem

    cabal-install Distribution.Client.CmdTest

    No documentation available.

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

    calligraphy Calligraphy.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 *
    

  7. notElemFreeVars :: HasFreeVars a => Var a -> a -> Bool

    clash-lib Clash.Core.HasFreeVars

    Check if a variable is not free in the given value. This function may be replaced with a more efficient implementation.

  8. notElemInScopeSet :: Var a -> InScopeSet -> Bool

    clash-lib Clash.Core.VarEnv

    Is the variable not in scope

  9. notElemVarEnv :: Var a -> VarEnv b -> Bool

    clash-lib Clash.Core.VarEnv

    Does the variable not exist in the environment

  10. notElemVarSet :: Var a -> VarSet -> Bool

    clash-lib Clash.Core.VarEnv

    Is the variable not an element in the set

Page 35 of many | Previous | Next