Absent<A> |
|
Collapse<_1,_2> |
A Semigroup instance formed by a Tuple2 <_1, _2>
and semigroups over
_1 and _2 .
|
Compose<A> |
A Semigroup instance formed by CompletableFuture <A>
and a semigroup over
A .
|
Intersection<A> |
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<L,R> |
|
LeftAny<L,R> |
|
Max<A extends java.lang.Comparable<A>> |
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<A,B extends java.lang.Comparable<B>> |
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<A> |
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<L,R> |
|
Min<A extends java.lang.Comparable<A>> |
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<A,B extends java.lang.Comparable<B>> |
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<A> |
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<L,R> |
|
RightAny<L,R> |
|
RunAll<A> |
Run IO operations, aggregating their results in terms of the provided Semigroup .
|