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.
noteResult :: CompareResult -> Textperf Perf.Report No documentation available.
-
reactive-midyim Reactive.Banana.MIDI.Process No documentation available.
notElem :: (Generator c, Eq (Elem c)) => Elem c -> c -> Boolreducers Data.Generator.Combinators Check to make sure that the supplied value is not a member of the Generator
notElem :: SChar -> SString -> SBoolsbv Data.SBV.Char Is the character not in the string?
>>> prove $ \c s -> c `elem` s .<=> sNot (c `notElem` s) Q.E.D.
notElem :: (Eq a, SymVal a) => SBV a -> SList a -> SBoolsbv Data.SBV.List notElem e l. Does l not contain the element e?
noTerminationChecks :: IO Proofsbv Documentation.SBV.Examples.KnuckleDragger.Basics It's important to realize that KnuckleDragger proofs in SBV neither check nor guarantee that the functions we use are terminating. This is beyond the scope (and current capabilities) of what SBV can handle. That is, the proof is up-to-termination, i.e., any proof implicitly assumes all functions defined (or axiomatized) terminate for all possible inputs. If non-termination is possible, then the logic becomes inconsistent, i.e., we can prove arbitrary results. Here is a simple example where we tell SBV that there is a function f with non terminating behavior. Using this, we can deduce False:
>>> noTerminationChecks Axiom: bad Lemma: noTerminationImpliesFalse Step: 1 (bad @ (n |-> 0 :: SInteger)) Q.E.D. Result: Q.E.D. [Proven] noTerminationImpliesFalse
notElem :: forall a (m :: Type -> Type) . (Eq a, Monad m) => a -> Fold m a Boolstreamly-core Streamly.Data.Fold Returns True if the given element is not present in the stream. Definition:
>>> notElem a = Fold.all (/= a)
notElem :: forall a (m :: Type -> Type) . (Eq a, Monad m) => a -> Fold m a Boolstreamly-core Streamly.Internal.Data.Fold Returns True if the given element is not present in the stream. Definition:
>>> notElem a = Fold.all (/= a)
notElem :: (Monad m, Eq a) => a -> Stream m a -> m Boolstreamly-core Streamly.Internal.Data.Stream No documentation available.
notElem :: (Monad m, Eq a) => a -> StreamK m a -> m Boolstreamly-core Streamly.Internal.Data.StreamK No documentation available.