Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
idleGCDelayTime :: GCFlags -> RtsTimebase GHC.RTS.Flags No documentation available.
idempotentIOProperty :: Testable prop => IO prop -> PropertyQuickCheck Test.QuickCheck Do I/O inside a property. Warning: during shrinking, the I/O may not always be re-executed. Instead, the I/O may be executed once and then its result retained. If this is not acceptable, use ioProperty instead.
idempotentIOProperty :: Testable prop => IO prop -> Propertytasty-quickcheck Test.Tasty.QuickCheck Do I/O inside a property. Warning: during shrinking, the I/O may not always be re-executed. Instead, the I/O may be executed once and then its result retained. If this is not acceptable, use ioProperty instead.
-
lens Control.Lens.Combinators Obtain an IndexedFold by dropping elements from another IndexedFold, IndexedLens, IndexedGetter or IndexedTraversal while a predicate holds.
idroppingWhile :: (i -> a -> Bool) -> IndexedFold i s a -> IndexedFold i s a idroppingWhile :: (i -> a -> Bool) -> IndexedTraversal' i s a -> IndexedFold i s a -- see notes idroppingWhile :: (i -> a -> Bool) -> IndexedLens' i s a -> IndexedFold i s a -- see notes idroppingWhile :: (i -> a -> Bool) -> IndexedGetter i s a -> IndexedFold i s a
Note: As with droppingWhile applying idroppingWhile to an IndexedLens or IndexedTraversal will still allow you to use it as a pseudo-IndexedTraversal, but if you change the value of the first target to one where the predicate returns True, then you will break the Traversal laws and Traversal fusion will no longer be sound. -
lens Control.Lens.Fold Obtain an IndexedFold by dropping elements from another IndexedFold, IndexedLens, IndexedGetter or IndexedTraversal while a predicate holds.
idroppingWhile :: (i -> a -> Bool) -> IndexedFold i s a -> IndexedFold i s a idroppingWhile :: (i -> a -> Bool) -> IndexedTraversal' i s a -> IndexedFold i s a -- see notes idroppingWhile :: (i -> a -> Bool) -> IndexedLens' i s a -> IndexedFold i s a -- see notes idroppingWhile :: (i -> a -> Bool) -> IndexedGetter i s a -> IndexedFold i s a
Note: As with droppingWhile applying idroppingWhile to an IndexedLens or IndexedTraversal will still allow you to use it as a pseudo-IndexedTraversal, but if you change the value of the first target to one where the predicate returns True, then you will break the Traversal laws and Traversal fusion will no longer be sound. iduplicate :: IndexedComonad w => w a c t -> w a b (w b c t)lens Control.Lens.Internal.Context duplicate an indexed comonadic value splitting the index.
-
lens Control.Lens.Internal.TH No documentation available.
identLetter :: GenLanguageDef s u (m :: Type -> Type) -> ParsecT s u m Charparsec Text.Parsec.Token This parser should accept any legal tail characters of identifiers. For example alphaNum <|> char '_'.
identStart :: GenLanguageDef s u (m :: Type -> Type) -> ParsecT s u m Charparsec Text.Parsec.Token This parser should accept any start characters of identifiers. For example letter <|> char '_'.
identifier :: GenTokenParser s u (m :: Type -> Type) -> ParsecT s u m Stringparsec Text.Parsec.Token This lexeme parser parses a legal identifier. Returns the identifier string. This parser will fail on identifiers that are reserved words. Legal identifier (start) characters and reserved words are defined in the LanguageDef that is passed to makeTokenParser. An identifier is treated as a single token using try.