Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

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

  1. monoidSort :: (Monoid a, Ord a) => [a] -> [a]

    sort Data.Sort

    Sort the list, agregating duplicates with the monoid.

  2. monoidSortAssocs :: (Monoid a, Ord k) => [(k, a)] -> [(k, a)]

    sort Data.Sort

    Sort the list of associations, aggregating duplicates with the monoid.

  3. monoidSortAssocsBy :: Monoid a => (k -> k -> Ordering) -> [(k, a)] -> [(k, a)]

    sort Data.Sort

    Sort the list of associations, aggregating duplicates with the monoid and ordering the keys with the argument compare function.

  4. monoidSortBy :: Monoid a => (a -> a -> Ordering) -> [a] -> [a]

    sort Data.Sort

    Sort the list, agregating duplicates with the monoid and ordering the keys with the argument compare function.

  5. monoidSortOn :: (Monoid a, Ord k) => (a -> k) -> [a] -> [a]

    sort Data.Sort

    Sort the list, agregating duplicates with the monoid and ordering the elements by the items generated by the argument function.

  6. WrapMonoid :: m -> WrappedMonoid m

    base Data.Semigroup

    No documentation available.

  7. newtype WrappedMonoid m

    base Data.Semigroup

    Provide a Semigroup for an arbitrary Monoid. NOTE: This is not needed anymore since Semigroup became a superclass of Monoid in base-4.11 and this newtype be deprecated at some point in the future.

  8. stimesIdempotentMonoid :: (Integral b, Monoid a) => b -> a -> a

    base Data.Semigroup

    This is a valid definition of stimes for an idempotent Monoid. When x <> x = x, this definition should be preferred, because it works in <math> rather than <math>

  9. stimesMonoid :: (Integral b, Monoid a) => b -> a -> a

    base Data.Semigroup

    This is a valid definition of stimes for a Monoid. Unlike the default definition of stimes, it is defined for 0 and so it should be preferred where possible.

  10. unwrapMonoid :: WrappedMonoid m -> m

    base Data.Semigroup

    No documentation available.

Page 6 of many | Previous | Next