Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

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

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

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

  4. testMarkers :: SpecTree -> [SomeMarker]

    skeletest Skeletest.Internal.Spec

    Markers, in order from least to most recently applied.

    >>> withMarker MarkerA . withMarker MarkerB $ test ...
    
    will contain
    >>> SpecTest { testMarkers = [MarkerA, MarkerB] }
    

  5. testMarkers :: TestInfo -> [SomeMarker]

    skeletest Skeletest.Internal.TestInfo

    No documentation available.

  6. testModule :: TestInfo -> Text

    skeletest Skeletest.Internal.TestInfo

    No documentation available.

  7. testMarkers :: TestAttrs -> [Text]

    skeletest Skeletest.Internal.TestTargets

    No documentation available.

  8. testMarkers :: TestInfo -> [SomeMarker]

    skeletest Skeletest.Plugin

    No documentation available.

  9. testModule :: TestInfo -> Text

    skeletest Skeletest.Plugin

    No documentation available.

  10. firstMap :: forall d (f :: Type -> Type -> Type) a b . (DFunctor d, Bifunctor f) => (a -> b) -> d (f a) -> d (f b)

    yaya Yaya.Functor

    This isn’t a Functor instance because of the position of the a, but you can use it like: > newtype List a = List (Mu (XNor a)) > instance Functor List where > fmap f (List mu) = List (firstMap f mu)

Page 82 of many | Previous | Next