Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. awaitJust :: forall (m :: Type -> Type) a b . Monad m => (a -> ConduitT a b m ()) -> ConduitT a b m ()

    conduit-algorithms Data.Conduit.Algorithms.Utils

    Act on the next input (do nothing if no input). awaitJust f is equivalent to

    do
    next <- C.await
    case next of
    Just val -> f val
    Nothing -> return ()
    
    This is a simple utility adapted from http://neilmitchell.blogspot.de/2015/07/thoughts-on-conduits.html

  2. adjustConsistency :: Consistency -> RetrySettings -> RetrySettings

    cql-io Database.CQL.IO

    On retry, change the consistency to the given value.

  3. adjustResponseTimeout :: NominalDiffTime -> RetrySettings -> RetrySettings

    cql-io Database.CQL.IO

    On retry adjust the response timeout. See setResponseTimeout.

  4. adjustSendTimeout :: NominalDiffTime -> RetrySettings -> RetrySettings

    cql-io Database.CQL.IO

    On retry adjust the send timeout. See setSendTimeout.

  5. adjust :: Ord k => (a -> a) -> Interval k -> IntervalMap k a -> IntervalMap k a

    data-interval Data.IntervalMap.Lazy

    Update a value at a specific interval with the result of the provided function. When the interval does not overlatp with the map, the original map is returned.

  6. adjust :: Ord k => (a -> a) -> Interval k -> IntervalMap k a -> IntervalMap k a

    data-interval Data.IntervalMap.Strict

    Update a value at a specific interval with the result of the provided function. When the interval does not overlatp with the map, the original map is returned.

  7. data IJust (a :: Maybe k) (b :: k)

    decidable Data.Type.Universe

    Witness an item in a type-level Maybe by proving the Maybe is Just.

  8. Adjust :: key -> da -> DeltaMap key da

    delta-types Data.Delta.Map

    No documentation available.

  9. NotJustTopAdditions :: FilePath -> GuessedChangeLog

    distribution-opensuse OpenSuse.GuessChangeLog

    This happens when upstream edits the file in ways other than just adding at the top. Sometimes people re-format old entries or rewrite URLs or fix typos, and in such a case it feels to risky to trust the diff.

  10. firstJustM :: Monad m => (a -> m (Maybe b)) -> [a] -> m (Maybe b)

    distribution-opensuse OpenSuse.Prelude

    Like findM, but also allows you to compute some additional information in the predicate.

Page 123 of many | Previous | Next