Hoogle Search

Within LTS Haskell 24.28 (ghc-9.10.3)

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

  1. adjustErr :: Commitment p => p a -> (String -> String) -> p a

    polyparse Text.ParserCombinators.Poly.StateLazy

    p adjustErr f applies the transformation f to any error message generated in p, having no effect if p succeeds.

  2. adjustErrBad :: PolyParse p => p a -> (String -> String) -> p a

    polyparse Text.ParserCombinators.Poly.StateLazy

    adjustErrBad is just like adjustErr except it also raises the severity of the error.

  3. adjustMax :: (a -> a) -> MaxPQueue k a -> MaxPQueue k a

    pqueue Data.PQueue.Prio.Max

    Alter the value at the maximum key. If the queue is empty, does nothing.

  4. adjustMaxA :: Applicative f => (a -> f a) -> MaxPQueue k a -> f (MaxPQueue k a)

    pqueue Data.PQueue.Prio.Max

    per operation. Alter the value at the maximum key in an Applicative context. If the queue is empty, does nothing.

  5. adjustMaxWithKey :: (k -> a -> a) -> MaxPQueue k a -> MaxPQueue k a

    pqueue Data.PQueue.Prio.Max

    Alter the value at the maximum key. If the queue is empty, does nothing.

  6. adjustMaxWithKeyA :: Applicative f => (k -> a -> f a) -> MaxPQueue k a -> f (MaxPQueue k a)

    pqueue Data.PQueue.Prio.Max

    per operation. Alter the value at the maximum key in an Applicative context. If the queue is empty, does nothing.

  7. adjustMin :: (a -> a) -> MinPQueue k a -> MinPQueue k a

    pqueue Data.PQueue.Prio.Min

    Alter the value at the minimum key. If the queue is empty, does nothing.

  8. adjustMinA :: Applicative f => (a -> f a) -> MinPQueue k a -> f (MinPQueue k a)

    pqueue Data.PQueue.Prio.Min

    Alter the value at the minimum key in an Applicative context. If the queue is empty, does nothing.

  9. adjustMinWithKey :: (k -> a -> a) -> MinPQueue k a -> MinPQueue k a

    pqueue Data.PQueue.Prio.Min

    Alter the value at the minimum key. If the queue is empty, does nothing.

  10. adjustMinWithKeyA :: Applicative f => (k -> a -> f a) -> MinPQueue k a -> f (MinPQueue k a)

    pqueue Data.PQueue.Prio.Min

    per operation. Alter the value at the minimum key in an Applicative context. If the queue is empty, does nothing.

Page 59 of many | Previous | Next