Hoogle Search

Within LTS Haskell 24.27 (ghc-9.10.3)

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

  1. mapHsOuterImplicit :: (XHsOuterImplicit pass -> XHsOuterImplicit pass) -> HsOuterTyVarBndrs flag pass -> HsOuterTyVarBndrs flag pass

    ghc-lib-parser Language.Haskell.Syntax.Type

    No documentation available.

  2. mapEither :: (Ord b, Ord c) => (a -> Either b c) -> MaxQueue a -> (MaxQueue b, MaxQueue c)

    pqueue Data.PQueue.Max

    Maps a function over the elements of the queue, and separates the Left and Right values.

  3. mapMaybe :: Ord b => (a -> Maybe b) -> MaxQueue a -> MaxQueue b

    pqueue Data.PQueue.Max

    Maps a function over the elements of the queue, and collects the Just values.

  4. mapU :: (a -> b) -> MaxQueue a -> MaxQueue b

    pqueue Data.PQueue.Max

    Assumes that the function it is given is monotonic, and applies this function to every element of the priority queue. Does not check the precondition.

  5. mapEither :: (Ord b, Ord c) => (a -> Either b c) -> MinQueue a -> (MinQueue b, MinQueue c)

    pqueue Data.PQueue.Min

    Map elements and separate the Left and Right results.

  6. mapMaybe :: Ord b => (a -> Maybe b) -> MinQueue a -> MinQueue b

    pqueue Data.PQueue.Min

    Map elements and collect the Just results.

  7. mapU :: (a -> b) -> MinQueue a -> MinQueue b

    pqueue Data.PQueue.Min

    Assumes that the function it is given is (weakly) monotonic, and applies this function to every element of the priority queue, as in fmap. If the function is not monotonic, the result is undefined.

  8. mapEither :: Ord k => (a -> Either b c) -> MaxPQueue k a -> (MaxPQueue k b, MaxPQueue k c)

    pqueue Data.PQueue.Prio.Max

    Map values and separate the Left and Right results.

  9. mapEitherWithKey :: Ord k => (k -> a -> Either b c) -> MaxPQueue k a -> (MaxPQueue k b, MaxPQueue k c)

    pqueue Data.PQueue.Prio.Max

    Map values and separate the Left and Right results.

  10. mapKeys :: Ord k' => (k -> k') -> MaxPQueue k a -> MaxPQueue k' a

    pqueue Data.PQueue.Prio.Max

    Map a function over all values in the queue.

Page 188 of many | Previous | Next