Absent |
|
Collapse |
A Semigroup instance formed by a Tuple2 <_1, _2>
and semigroups over
_1 and _2 .
|
Compose |
A Semigroup instance formed by CompletableFuture <A>
and a semigroup over
A .
|
Intersection |
Given two Iterables xs and ys , return the distinct
elements of xs that are also in ys in order of their unique occurrence in xs .
|
LeftAll |
|
LeftAny |
|
Max |
A Semigroup over A that chooses between two values x and y via the
following rules:
If x is strictly less than y , return y
Otherwise, return x
|
MaxBy |
Given a mapping function from some type A to some Comparable type B , produce a
Semigroup over A that chooses between two values x and y via the
following rules:
If x is strictly less than y in terms of B , return y
Otherwise, return x
|
MaxWith |
Given a comparator for some type A , produce a Semigroup over A that chooses
between two values x and y via the following rules:
If x is strictly less than y in terms of B , return y
Otherwise, return x
|
Merge |
|
Min |
A Semigroup over A that chooses between two values x and y via the
following rules:
If x is strictly greater than y , return y
Otherwise, return x
|
MinBy |
Given a mapping function from some type A to some Comparable type B , produce a
Semigroup over A that chooses between two values x and y via the
following rules:
If x is strictly greater than y in terms of B , return y
Otherwise, return x
|
MinWith |
Given a comparator for some type A , produce a Semigroup over A that chooses
between two values x and y via the following rules:
If x is strictly greater than y in terms of B , return y
Otherwise, return x
|
RightAll |
|
RightAny |
|
RunAll |
Run IO operations, aggregating their results in terms of the provided Semigroup .
|