- com.github.javactic - package com.github.javactic
-
- com.github.javactic.futures - package com.github.javactic.futures
-
- combined(Iterable<? extends Or<? extends G, ? extends Every<? extends ERR>>>) - Static method in class com.github.javactic.Accumulation
-
Combines an Iterable of Ors of type Or<G, EVERY<ERR>> (where
EVERY is some subtype of Every) into a single Or of type
Or<Vector<G>, Every<ERR>>.
- combined(Iterable<? extends Or<? extends G, ? extends Every<? extends ERR>>>, Collector<? super G, A, I>) - Static method in class com.github.javactic.Accumulation
-
Combines an Iterable of Ors of type Or<G, EVERY<ERR>> (where
EVERY is some subtype of Every) into a single Or of type
Or<COLL<G>, Every<ERR>> using a Collector to determine
the wanted collection type COLL.
- combined(Iterable<? extends OrFuture<? extends G, ? extends Every<? extends ERR>>>) - Static method in interface com.github.javactic.futures.OrFuture
-
Combines an Iterable of OrFutures of type OrFuture<G, EVERY<ERR>> (where
EVERY is some subtype of Every) into a single OrFuture of type
OrFuture<Vector<G>, Every<ERR>>.
- combined(Iterable<? extends OrFuture<? extends G, ? extends Every<? extends ERR>>>, Collector<? super G, A, I>) - Static method in interface com.github.javactic.futures.OrFuture
-
Combines an Iterable of OrFutures of type OrFuture<G, EVERY<ERR>> (where
EVERY is some subtype of Every) into a single OrFuture of type
OrFuture<COLL<G>, Every<ERR>> using a Collector to determine
the wanted collection type COLL.
- complete(Or<? extends G, ? extends B>) - Method in interface com.github.javactic.futures.OrPromise
-
Completes the underlying future with the given value.
- completeWith(OrFuture<? extends G, ? extends B>) - Method in interface com.github.javactic.futures.OrPromise
-
Completes this promise with the specified future, once that future is completed.
- compose(ToIntFunction<? super A>) - Method in interface com.github.javactic.Every
-
Composes an instance of ToIntFunction with this IntFunction.
- contains(G) - Method in class com.github.javactic.Bad
-
- contains(T) - Method in interface com.github.javactic.Every
-
Indicates whether this Every contains a given value as an element.
- contains(G) - Method in class com.github.javactic.Good
-
- contains(G) - Method in interface com.github.javactic.Or
-
- containsBad(B) - Method in class com.github.javactic.Bad
-
- containsBad(B) - Method in class com.github.javactic.Good
-
- containsBad(B) - Method in interface com.github.javactic.Or
-
- containsSlice(Iterable<? extends T>) - Method in interface com.github.javactic.Every
-
Indicates whether this Every contains a given Iterable as a slice.
- copyToJavaArray(T[], int, int) - Method in interface com.github.javactic.Every
-
Copies values of this Every to an array.
- copyToJavaArray(T[], int) - Method in interface com.github.javactic.Every
-
Copies values of this Every to an array.
- copyToJavaArray(T[]) - Method in interface com.github.javactic.Every
-
Copies values of this Every to an array.
- corresponds(Iterable<? extends B>, BiPredicate<? super T, ? super B>) - Method in interface com.github.javactic.Every
-
Indicates whether every element of this Every relates to the
corresponding element of a given Iterable by satisfying a given
predicate.
- count(Predicate<? super T>) - Method in interface com.github.javactic.Every
-
Counts the number of elements in the Every that satisfy a predicate.
- create() - Static method in interface com.github.javactic.futures.OrPromise
-
Creates a new promise that can be fulfilled later.