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.

  1. idleGCDelayTime :: GCFlags -> RtsTime

    base GHC.RTS.Flags

    No documentation available.

  2. idempotentIOProperty :: Testable prop => IO prop -> Property

    QuickCheck 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.

  3. idempotentIOProperty :: Testable prop => IO prop -> Property

    tasty-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.

  4. idroppingWhile :: (Indexable i p, Profunctor q, Applicative f) => (i -> a -> Bool) -> Optical (Indexed i) q (Compose (State Bool) f) s t a a -> Optical p q f s t a a

    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.

  5. idroppingWhile :: (Indexable i p, Profunctor q, Applicative f) => (i -> a -> Bool) -> Optical (Indexed i) q (Compose (State Bool) f) s t a a -> Optical p q f s t a a

    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.

  6. 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.

  7. idValName :: Name

    lens Control.Lens.Internal.TH

    No documentation available.

  8. identLetter :: GenLanguageDef s u (m :: Type -> Type) -> ParsecT s u m Char

    parsec Text.Parsec.Token

    This parser should accept any legal tail characters of identifiers. For example alphaNum <|> char '_'.

  9. identStart :: GenLanguageDef s u (m :: Type -> Type) -> ParsecT s u m Char

    parsec Text.Parsec.Token

    This parser should accept any start characters of identifiers. For example letter <|> char '_'.

  10. identifier :: GenTokenParser s u (m :: Type -> Type) -> ParsecT s u m String

    parsec 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.

Page 262 of many | Previous | Next