T - public class StreamableTSeq<T> extends java.lang.Object implements StreamableT<T>
| Modifier and Type | Method and Description |
|---|---|
StreamableTSeq<T> |
combine(java.util.function.BiPredicate<? super T,? super T> predicate,
java.util.function.BinaryOperator<T> op)
Combine two adjacent elements in a traversable using the supplied BinaryOperator
This is a stateful grouping & reduction operation.
|
StreamableTSeq<T> |
cycle(int times)
Convert to a Stream with the values repeated specified times
|
StreamableTSeq<T> |
cycle(Monoid<T> m,
int times)
Convert to a Stream with the result of a reduction operation repeated
specified times
|
StreamableTSeq<T> |
cycleUntil(java.util.function.Predicate<? super T> predicate)
Repeat in a Stream until specified predicate holds
|
StreamableTSeq<T> |
cycleWhile(java.util.function.Predicate<? super T> predicate)
Repeat in a Stream while specified predicate holds
|
StreamableTSeq<T> |
distinct() |
StreamableTSeq<T> |
dropRight(int num) |
StreamableTSeq<T> |
dropUntil(java.util.function.Predicate<? super T> p) |
StreamableTSeq<T> |
dropWhile(java.util.function.Predicate<? super T> p) |
<R> StreamableTSeq<R> |
empty() |
static <T> StreamableTSeq<T> |
emptyStreamable() |
boolean |
equals(java.lang.Object o) |
StreamableTSeq<T> |
filter(java.util.function.Predicate<? super T> test)
Filter the wrapped Streamable
|
<B> StreamableTSeq<B> |
flatMap(java.util.function.Function<? super T,? extends java.lang.Iterable<? extends B>> f) |
<B> StreamableTSeq<B> |
flatMapT(java.util.function.Function<? super T,StreamableTSeq<? extends B>> f)
Flat Map the wrapped Streamable
|
static <A> StreamableTSeq<A> |
fromAnyM(AnyMSeq<A> anyM)
|
static <A> StreamableTSeq<A> |
fromStream(AnyMSeq<java.util.stream.Stream<A>> monads)
Create a StreamableT from an AnyM that wraps a monad containing a Stream
|
<K> StreamableTSeq<org.jooq.lambda.tuple.Tuple2<K,org.jooq.lambda.Seq<T>>> |
grouped(java.util.function.Function<? super T,? extends K> classifier) |
<K,A,D> StreamableTSeq<org.jooq.lambda.tuple.Tuple2<K,D>> |
grouped(java.util.function.Function<? super T,? extends K> classifier,
java.util.stream.Collector<? super T,A,D> downstream) |
StreamableTSeq<ListX<T>> |
grouped(int groupSize)
Group elements in a Stream
|
<C extends java.util.Collection<? super T>> |
grouped(int size,
java.util.function.Supplier<C> supplier)
Batch elements in a Stream by size into a collection created by the
supplied factory
|
StreamableTSeq<ListX<T>> |
groupedStatefullyWhile(java.util.function.BiPredicate<ListX<? super T>,? super T> predicate)
Create Travesable of Lists where
each List is populated while the supplied bipredicate holds.
|
StreamableTSeq<ListX<T>> |
groupedUntil(java.util.function.Predicate<? super T> predicate)
Create a Traversable batched by List, where each batch is populated until
the predicate holds
|
<C extends java.util.Collection<? super T>> |
groupedUntil(java.util.function.Predicate<? super T> predicate,
java.util.function.Supplier<C> factory)
Create a SequenceM batched by a Collection, where each batch is populated
until the predicate holds
|
StreamableTSeq<ListX<T>> |
groupedWhile(java.util.function.Predicate<? super T> predicate)
Create a Traversable batched by List, where each batch is populated while
the predicate holds
|
<C extends java.util.Collection<? super T>> |
groupedWhile(java.util.function.Predicate<? super T> predicate,
java.util.function.Supplier<C> factory)
Create a SequenceM batched by a Collection, where each batch is populated
while the predicate holds
|
int |
hashCode() |
StreamableTSeq<T> |
intersperse(T value)
Returns a stream with a given value interspersed between any two values
of this stream.
|
boolean |
isSeqPresent() |
java.util.Iterator<T> |
iterator() |
static <U,R> java.util.function.Function<StreamableTSeq<U>,StreamableTSeq<R>> |
lift(java.util.function.Function<? super U,? extends R> fn)
Lift a function into one that accepts and returns an StreamableT
This allows multiple monad types to add functionality to existing functions and methods
e.g.
|
static <U1,U2,R> java.util.function.BiFunction<StreamableTSeq<U1>,StreamableTSeq<U2>,StreamableTSeq<R>> |
lift2(java.util.function.BiFunction<? super U1,? super U2,? extends R> fn)
Lift a BiFunction into one that accepts and returns StreamableTs
This allows multiple monad types to add functionality to existing functions and methods
e.g.
|
StreamableTSeq<T> |
limit(long num)
assertThat(ReactiveSeq.of(4,3,6,7).limit(2).toList(),equalTo(Arrays.asList(4,3)); |
StreamableTSeq<T> |
limitLast(int num)
Limit results to the last x elements in a SequenceM
|
StreamableTSeq<T> |
limitUntil(java.util.function.Predicate<? super T> p)
Take elements from the Stream until the predicate returns true, after
which all elements are excluded.
|
StreamableTSeq<T> |
limitWhile(java.util.function.Predicate<? super T> p)
Take elements from the Stream while the predicate holds, once the
predicate returns false all subsequent elements are excluded
|
<B> StreamableTSeq<B> |
map(java.util.function.Function<? super T,? extends B> f)
Map the wrapped Streamable
|
AnyM<? extends CyclopsCollectable<T>> |
nestedCollectables() |
AnyM<? extends IterableFoldable<T>> |
nestedFoldables() |
static <A> StreamableTSeq<A> |
of(AnyMSeq<Streamable<A>> monads)
Construct an StreamableT from an AnyM that wraps a monad containing Streamables
|
static <A> StreamableTSeq<A> |
of(Streamable<A> monads) |
StreamableTSeq<T> |
onEmpty(T value) |
StreamableTSeq<T> |
onEmptyGet(java.util.function.Supplier<? extends T> supplier) |
<X extends java.lang.Throwable> |
onEmptyThrow(java.util.function.Supplier<? extends X> supplier) |
StreamableTSeq<T> |
peek(java.util.function.Consumer<? super T> peek)
Peek at the current value of the Streamable
|
StreamableTSeq<T> |
reverse() |
StreamableTSeq<T> |
scanLeft(Monoid<T> monoid)
Scan left using supplied Monoid
|
<U> StreamableTSeq<U> |
scanLeft(U seed,
java.util.function.BiFunction<? super U,? super T,? extends U> function)
Scan left
|
StreamableTSeq<T> |
scanRight(Monoid<T> monoid)
Scan right
|
<U> StreamableTSeq<U> |
scanRight(U identity,
java.util.function.BiFunction<? super T,? super U,? extends U> combiner)
Scan right
|
StreamableTSeq<T> |
shuffle() |
StreamableTSeq<T> |
shuffle(java.util.Random random) |
StreamableTSeq<T> |
skip(long num)
assertThat(ReactiveSeq.of(4,3,6,7).skip(2).toList(),equalTo(Arrays.asList(6,7))); |
StreamableTSeq<T> |
skipLast(int num)
assertThat(ReactiveSeq.of(1,2,3,4,5) .skipLast(2)
.collect(Collectors.toList()),equalTo(Arrays.asList(1,2,3)));
|
StreamableTSeq<T> |
skipUntil(java.util.function.Predicate<? super T> p)
Drop elements from the Stream until the predicate returns true, after
which all elements are included
|
StreamableTSeq<T> |
skipWhile(java.util.function.Predicate<? super T> p)
SkipWhile drops elements from the Stream while the predicate holds, once
the predicte returns true all subsequent elements are included *
|
StreamableTSeq<T> |
slice(long from,
long to) |
StreamableTSeq<ListX<T>> |
sliding(int windowSize)
Create a sliding view over this Sequence
|
StreamableTSeq<ListX<T>> |
sliding(int windowSize,
int increment)
Create a sliding view over this Sequence
|
StreamableTSeq<T> |
sorted()
assertThat(ReactiveSeq.of(4,3,6,7)).sorted().toList(),equalTo(Arrays.asList(3,4,6,7))); |
StreamableTSeq<T> |
sorted(java.util.Comparator<? super T> c)
assertThat(ReactiveSeq.of(4,3,6,7).sorted((a,b) -> b-a).toList(),equalTo(Arrays.asList(7,6,4,3)));
|
<U extends java.lang.Comparable<? super U>> |
sorted(java.util.function.Function<? super T,? extends U> function) |
ReactiveSeq<T> |
stream() |
StreamableTSeq<T> |
takeRight(int num) |
StreamableTSeq<T> |
takeUntil(java.util.function.Predicate<? super T> p) |
StreamableTSeq<T> |
takeWhile(java.util.function.Predicate<? super T> p) |
java.lang.String |
toString() |
AnyMSeq<? extends Traversable<T>> |
transformerStream() |
<T> StreamableTSeq<T> |
unit(T unit) |
<T> StreamableTSeq<T> |
unitAnyM(AnyM<Traversable<T>> traversable) |
<R> StreamableTSeq<R> |
unitIterator(java.util.Iterator<R> it) |
AnyM<Streamable<T>> |
unwrap() |
<U> StreamableTSeq<org.jooq.lambda.tuple.Tuple2<T,U>> |
zip(java.lang.Iterable<? extends U> other) |
<U,R> StreamableTSeq<R> |
zip(java.lang.Iterable<? extends U> other,
java.util.function.BiFunction<? super T,? super U,? extends R> zipper) |
<U> StreamableTSeq<org.jooq.lambda.tuple.Tuple2<T,U>> |
zip(org.jooq.lambda.Seq<? extends U> other) |
<U,R> StreamableTSeq<R> |
zip(org.jooq.lambda.Seq<? extends U> other,
java.util.function.BiFunction<? super T,? super U,? extends R> zipper) |
<U> StreamableTSeq<org.jooq.lambda.tuple.Tuple2<T,U>> |
zip(java.util.stream.Stream<? extends U> other)
Zip 2 streams into one
|
<U,R> StreamableTSeq<R> |
zip(java.util.stream.Stream<? extends U> other,
java.util.function.BiFunction<? super T,? super U,? extends R> zipper) |
<S,U> StreamableTSeq<org.jooq.lambda.tuple.Tuple3<T,S,U>> |
zip3(java.util.stream.Stream<? extends S> second,
java.util.stream.Stream<? extends U> third)
zip 3 Streams into one
|
<T2,T3,T4> StreamableTSeq<org.jooq.lambda.tuple.Tuple4<T,T2,T3,T4>> |
zip4(java.util.stream.Stream<? extends T2> second,
java.util.stream.Stream<? extends T3> third,
java.util.stream.Stream<? extends T4> fourth)
zip 4 Streams into 1
|
StreamableTSeq<org.jooq.lambda.tuple.Tuple2<T,java.lang.Long>> |
zipWithIndex()
Add an index to the current Stream
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitbind, cast, emptyOptional, filterNot, fromAnyM, fromAnyMSeq, fromAnyMValue, fromFuture, fromIterable, fromIterableValue, fromOptional, fromPublisher, fromStream, fromStream, fromValue, notNull, of, ofType, patternMatch, trampolinefutureOperations, lazyOperations, subscribeseq, toCompletableFuture, toDequeX, toEvalAlways, toEvalLater, toEvalNow, toFutureStream, toFutureStream, toFutureW, toIor, toIorSecondary, toListX, toMapX, toMaybe, toOptional, toPBagX, toPMapX, toPOrderedSetX, toPQueueX, toPSetX, toPStackX, toPVectorX, toQueueX, toSetX, toSimpleReact, toSimpleReact, toSortedSetX, toStreamable, toTry, toValue, toValueMap, toValueSet, toXor, toXorSecondarytraversablefixedDelay, onePer, xPerfutureStream, getStreamable, isEmpty, jdkStream, reactiveSeq, reveresedJDKStream, reveresedStreamendsWith, endsWithIterable, findFirst, firstValue, foldRight, foldRight, foldRight, foldRightMapToType, get, groupBy, headAndTail, join, join, join, mapReduce, mapReduce, print, print, printErr, printOut, reduce, reduce, reduce, reduce, reduce, reduce, schedule, scheduleFixedDelay, scheduleFixedRate, single, single, singleOptional, startsWith, startsWithIterable, toConcurrentLazyCollection, toConcurrentLazyStreamable, toLazyCollection, validate, visitallMatch, anyMatch, collect, collect, listT, noneMatch, setT, streamableT, streamT, toListOfLists, toNestedListX, toNestedSetX, toSetOfSetspublic boolean isSeqPresent()
isSeqPresent in interface TransformerSeq<T>public AnyM<Streamable<T>> unwrap()
unwrap in interface StreamableT<T>public StreamableTSeq<T> peek(java.util.function.Consumer<? super T> peek)
StreamableT.of(AnyM.fromStream(Streamable.of(10))
.peek(System.out::println);
//prints 10
public StreamableTSeq<T> filter(java.util.function.Predicate<? super T> test)
StreamableT.of(AnyM.fromStream(Streamable.of(10,11))
.filter(t->t!=10);
//StreamableT<AnyM<Stream<Streamable[11]>>>
filter in interface StreamableT<T>filter in interface Filterable<T>filter in interface FilterableFunctor<T>test - Predicate to filter the wrapped Streamablepublic <B> StreamableTSeq<B> map(java.util.function.Function<? super T,? extends B> f)
StreamableT.of(AnyM.fromStream(Streamable.of(10))
.map(t->t=t+1);
//StreamableT<AnyM<Stream<Streamable[11]>>>
map in interface StreamableT<T>map in interface FilterableFunctor<T>map in interface Functor<T>f - Mapping function for the wrapped Streamablepublic <B> StreamableTSeq<B> flatMapT(java.util.function.Function<? super T,StreamableTSeq<? extends B>> f)
StreamableT.of(AnyM.fromStream(Arrays.asStreamable(10))
.flatMap(t->Streamable.of(2));
//StreamableT<AnyM<Stream<Streamable.[2]>>>
f - FlatMap functionpublic <B> StreamableTSeq<B> flatMap(java.util.function.Function<? super T,? extends java.lang.Iterable<? extends B>> f)
flatMap in interface StreamableT<T>public static <U,R> java.util.function.Function<StreamableTSeq<U>,StreamableTSeq<R>> lift(java.util.function.Function<? super U,? extends R> fn)
Function<Integer,Integer> add2 = i -> i+2;
Function<StreamableT<Integer>, StreamableT<Integer>> optTAdd2 = StreamableT.lift(add2);
Stream<Integer> nums = Stream.of(1,2);
AnyM<Stream<Integer>> stream = AnyM.ofMonad(Optional.of(nums));
List<Integer> results = optTAdd2.apply(StreamableT.fromStream(stream))
.unwrap()
.<Optional<Streamable<Integer>>>unwrap()
.get()
.collect(Collectors.toList());
//Streamable.of(3,4);
lift in interface StreamableT<T>fn - Function to enhance with functionality from Streamable and another monad typepublic static <U1,U2,R> java.util.function.BiFunction<StreamableTSeq<U1>,StreamableTSeq<U2>,StreamableTSeq<R>> lift2(java.util.function.BiFunction<? super U1,? super U2,? extends R> fn)
BiFunction<Integer,Integer,Integer> add = (a,b) -> a+b;
BiFunction<StreamableT<Integer>,StreamableT<Integer>, StreamableT<Integer>> optTAdd2 = StreamableT.lift2(add);
Streamable<Integer> threeValues = Streamable.of(1,2,3);
AnyM<Integer> stream = AnyM.ofMonad(threeValues);
AnyM<Streamable<Integer>> streamOpt = stream.map(Streamable::of);
CompletableFuture<Streamable<Integer>> two = CompletableFuture.completedFuture(Streamable.of(2));
AnyM<Streamable<Integer>> future= AnyM.fromCompletableFuture(two);
List<Integer> results = optTAdd2.apply(StreamableT.of(streamOpt),StreamableT.of(future))
.unwrap()
.<Stream<Streamable<Integer>>>unwrap()
.flatMap(i->i.sequenceM())
.collect(Collectors.toList());
//Streamable.of(3,4);
lift2 in interface StreamableT<T>fn - BiFunction to enhance with functionality from Streamable and another monad typepublic static <A> StreamableTSeq<A> fromAnyM(AnyMSeq<A> anyM)
anyM - AnyM that doesn't contain a monad wrapping an Streamablepublic static <A> StreamableTSeq<A> of(AnyMSeq<Streamable<A>> monads)
monads - AnyM that contains a monad wrapping an Streamablepublic static <A> StreamableTSeq<A> of(Streamable<A> monads)
public static <A> StreamableTSeq<A> fromStream(AnyMSeq<java.util.stream.Stream<A>> monads)
monads - public java.lang.String toString()
toString in class java.lang.Objectpublic <T> StreamableTSeq<T> unit(T unit)
unit in interface StreamableT<T>public ReactiveSeq<T> stream()
stream in interface FoldableTransformerSeq<T>stream in interface TransformerSeq<T>stream in interface NestedFoldable<T>stream in interface Sequential<T>stream in interface ConvertableSequence<T>stream in interface ToStream<T>stream in interface Traversable<T>public java.util.Iterator<T> iterator()
public <R> StreamableTSeq<R> unitIterator(java.util.Iterator<R> it)
unitIterator in interface StreamableT<T>public <R> StreamableTSeq<R> empty()
empty in interface StreamableT<T>public AnyM<? extends IterableFoldable<T>> nestedFoldables()
nestedFoldables in interface NestedFoldable<T>public AnyM<? extends CyclopsCollectable<T>> nestedCollectables()
nestedCollectables in interface NestedCollectable<T>public <T> StreamableTSeq<T> unitAnyM(AnyM<Traversable<T>> traversable)
unitAnyM in interface TransformerSeq<T>public AnyMSeq<? extends Traversable<T>> transformerStream()
transformerStream in interface TransformerSeq<T>public static <T> StreamableTSeq<T> emptyStreamable()
emptyStreamable in interface StreamableT<T>public StreamableTSeq<T> combine(java.util.function.BiPredicate<? super T,? super T> predicate, java.util.function.BinaryOperator<T> op)
Traversable
ReactiveSeq.of(1,1,2,3)
.combine((a, b)->a.equals(b),Semigroups.intSum)
.toListX()
//ListX(3,4)
combine in interface StreamableT<T>combine in interface TransformerSeq<T>combine in interface Traversable<T>predicate - Test to see if two neighbours should be joinedop - Reducer to combine neighbourspublic StreamableTSeq<T> cycle(int times)
Traversable
ReactiveSeq.of(1,2,2)
.cycle(3)
.collect(Collectors.toList());
//List[1,2,2,1,2,2,1,2,2]
cycle in interface StreamableT<T>cycle in interface TransformerSeq<T>cycle in interface Traversable<T>times - Times values should be repeated within a Streampublic StreamableTSeq<T> cycle(Monoid<T> m, int times)
Traversable
List<Integer> list = ReactiveSeq.of(1,2,2))
.cycle(Reducers.toCountInt(),3)
.collect(Collectors.toList());
//List[3,3,3];
cycle in interface StreamableT<T>cycle in interface TransformerSeq<T>cycle in interface Traversable<T>m - Monoid to be used in reductiontimes - Number of times value should be repeatedpublic StreamableTSeq<T> cycleWhile(java.util.function.Predicate<? super T> predicate)
Traversable
{
@code
MutableInt count = MutableInt.of(0);
ReactiveSeq.of(1, 2, 2).cycleWhile(next -> count++ < 6).collect(Collectors.toList());
// List(1,2,2,1,2,2)
}
cycleWhile in interface StreamableT<T>cycleWhile in interface TransformerSeq<T>cycleWhile in interface Traversable<T>predicate - repeat while truepublic StreamableTSeq<T> cycleUntil(java.util.function.Predicate<? super T> predicate)
Traversable
MutableInt count =MutableInt.of(0);
ReactiveSeq.of(1,2,2)
.cycleUntil(next -> count.get()>6)
.peek(i-> count.mutate(i->i+1))
.collect(Collectors.toList());
//List[1,2,2,1,2,2,1]
cycleUntil in interface StreamableT<T>cycleUntil in interface TransformerSeq<T>cycleUntil in interface Traversable<T>predicate - repeat while truepublic <U,R> StreamableTSeq<R> zip(java.lang.Iterable<? extends U> other, java.util.function.BiFunction<? super T,? super U,? extends R> zipper)
zip in interface StreamableT<T>zip in interface TransformerSeq<T>zip in interface Traversable<T>public <U,R> StreamableTSeq<R> zip(org.jooq.lambda.Seq<? extends U> other, java.util.function.BiFunction<? super T,? super U,? extends R> zipper)
zip in interface StreamableT<T>zip in interface TransformerSeq<T>zip in interface Traversable<T>public <U,R> StreamableTSeq<R> zip(java.util.stream.Stream<? extends U> other, java.util.function.BiFunction<? super T,? super U,? extends R> zipper)
zip in interface StreamableT<T>zip in interface TransformerSeq<T>zip in interface Traversable<T>public <U> StreamableTSeq<org.jooq.lambda.tuple.Tuple2<T,U>> zip(java.util.stream.Stream<? extends U> other)
Traversable
{
@code
List<Tuple2<Integer, String>> list = of(1, 2).zip(of("a", "b", "c", "d")).toList();
// [[1,"a"],[2,"b"]]
}
zip in interface StreamableT<T>zip in interface TransformerSeq<T>zip in interface Traversable<T>public <U> StreamableTSeq<org.jooq.lambda.tuple.Tuple2<T,U>> zip(java.lang.Iterable<? extends U> other)
zip in interface StreamableT<T>zip in interface TransformerSeq<T>zip in interface Traversable<T>public <U> StreamableTSeq<org.jooq.lambda.tuple.Tuple2<T,U>> zip(org.jooq.lambda.Seq<? extends U> other)
zip in interface StreamableT<T>zip in interface TransformerSeq<T>zip in interface Traversable<T>public <S,U> StreamableTSeq<org.jooq.lambda.tuple.Tuple3<T,S,U>> zip3(java.util.stream.Stream<? extends S> second, java.util.stream.Stream<? extends U> third)
Traversable
{
@code
List<Tuple3<Integer, Integer, Character>> list = of(1, 2, 3, 4, 5, 6).zip3(of(100, 200, 300, 400), of('a', 'b', 'c')).collect(Collectors.toList());
// [[1,100,'a'],[2,200,'b'],[3,300,'c']]
}
zip3 in interface StreamableT<T>zip3 in interface TransformerSeq<T>zip3 in interface Traversable<T>public <T2,T3,T4> StreamableTSeq<org.jooq.lambda.tuple.Tuple4<T,T2,T3,T4>> zip4(java.util.stream.Stream<? extends T2> second, java.util.stream.Stream<? extends T3> third, java.util.stream.Stream<? extends T4> fourth)
Traversable
{
@code
List<Tuple4<Integer, Integer, Character, String>> list = of(1, 2, 3, 4, 5, 6).zip4(of(100, 200, 300, 400), of('a', 'b', 'c'), of("hello", "world"))
.collect(Collectors.toList());
}
// [[1,100,'a',"hello"],[2,200,'b',"world"]]
zip4 in interface StreamableT<T>zip4 in interface TransformerSeq<T>zip4 in interface Traversable<T>public StreamableTSeq<org.jooq.lambda.tuple.Tuple2<T,java.lang.Long>> zipWithIndex()
Traversable
assertEquals(asList(new Tuple2("a", 0L), new Tuple2("b", 1L)), of("a", "b").zipWithIndex().toList());
zipWithIndex in interface StreamableT<T>zipWithIndex in interface TransformerSeq<T>zipWithIndex in interface Traversable<T>public StreamableTSeq<ListX<T>> sliding(int windowSize)
Traversable
{
@code
List<List<Integer>> list = ReactiveSeq.of(1, 2, 3, 4, 5, 6).sliding(2).collect(Collectors.toList());
assertThat(list.get(0), hasItems(1, 2));
assertThat(list.get(1), hasItems(2, 3));
}
sliding in interface StreamableT<T>sliding in interface TransformerSeq<T>sliding in interface Traversable<T>windowSize - Size of sliding windowpublic StreamableTSeq<ListX<T>> sliding(int windowSize, int increment)
Traversable
{
@code
List<List<Integer>> list = ReactiveSeq.of(1, 2, 3, 4, 5, 6).sliding(3, 2).collect(Collectors.toList());
assertThat(list.get(0), hasItems(1, 2, 3));
assertThat(list.get(1), hasItems(3, 4, 5));
}
sliding in interface StreamableT<T>sliding in interface TransformerSeq<T>sliding in interface Traversable<T>windowSize - number of elements in each batchincrement - for each windowpublic <C extends java.util.Collection<? super T>> StreamableTSeq<C> grouped(int size, java.util.function.Supplier<C> supplier)
Traversable
assertThat(ReactiveSeq.of(1,1,1,1,1,1)
.batchBySize(3,()->new TreeSet<>())
.toList()
.get(0)
.size(),is(1));
grouped in interface StreamableT<T>grouped in interface TransformerSeq<T>grouped in interface Traversable<T>size - batch sizesupplier - Collection factorypublic StreamableTSeq<ListX<T>> groupedUntil(java.util.function.Predicate<? super T> predicate)
Traversable
assertThat(ReactiveSeq.of(1,2,3,4,5,6)
.groupedUntil(i->i%3==0)
.toList()
.size(),equalTo(2));
groupedUntil in interface StreamableT<T>groupedUntil in interface TransformerSeq<T>groupedUntil in interface Traversable<T>predicate - Batch until predicate holds, then open next batchpublic StreamableTSeq<ListX<T>> groupedStatefullyWhile(java.util.function.BiPredicate<ListX<? super T>,? super T> predicate)
Traversable
assertThat(ReactiveSeq.of(1,2,3,4,5,6)
.groupedStatefullyWhile((s,i)->s.contains(4) ? true : false)
.toList().size(),equalTo(5));
groupedStatefullyWhile in interface StreamableT<T>groupedStatefullyWhile in interface TransformerSeq<T>groupedStatefullyWhile in interface Traversable<T>predicate - Window while truepublic StreamableTSeq<ListX<T>> groupedWhile(java.util.function.Predicate<? super T> predicate)
Traversable
assertThat(ReactiveSeq.of(1,2,3,4,5,6)
.groupedWhile(i->i%3!=0)
.toList().size(),equalTo(2));
groupedWhile in interface StreamableT<T>groupedWhile in interface TransformerSeq<T>groupedWhile in interface Traversable<T>predicate - Batch while predicate holds, then open next batchpublic <C extends java.util.Collection<? super T>> StreamableTSeq<C> groupedWhile(java.util.function.Predicate<? super T> predicate, java.util.function.Supplier<C> factory)
Traversable
assertThat(ReactiveSeq.of(1,2,3,4,5,6)
.batchWhile(i->i%3!=0)
.toList()
.size(),equalTo(2));
groupedWhile in interface StreamableT<T>groupedWhile in interface TransformerSeq<T>groupedWhile in interface Traversable<T>predicate - Batch while predicate holds, then open next batchfactory - Collection factorypublic <C extends java.util.Collection<? super T>> StreamableTSeq<C> groupedUntil(java.util.function.Predicate<? super T> predicate, java.util.function.Supplier<C> factory)
Traversable
assertThat(ReactiveSeq.of(1,2,3,4,5,6)
.batchUntil(i->i%3!=0)
.toList()
.size(),equalTo(2));
groupedUntil in interface StreamableT<T>groupedUntil in interface TransformerSeq<T>groupedUntil in interface Traversable<T>predicate - Batch until predicate holds, then open next batchfactory - Collection factorypublic StreamableTSeq<ListX<T>> grouped(int groupSize)
Traversable
{
@code
List<List<Integer>> list = ReactiveSeq.of(1, 2, 3, 4, 5, 6).grouped(3).collect(Collectors.toList());
assertThat(list.get(0), hasItems(1, 2, 3));
assertThat(list.get(1), hasItems(4, 5, 6));
}
grouped in interface StreamableT<T>grouped in interface TransformerSeq<T>grouped in interface Traversable<T>groupSize - Size of each Grouppublic <K,A,D> StreamableTSeq<org.jooq.lambda.tuple.Tuple2<K,D>> grouped(java.util.function.Function<? super T,? extends K> classifier, java.util.stream.Collector<? super T,A,D> downstream)
grouped in interface StreamableT<T>grouped in interface TransformerSeq<T>grouped in interface Traversable<T>public <K> StreamableTSeq<org.jooq.lambda.tuple.Tuple2<K,org.jooq.lambda.Seq<T>>> grouped(java.util.function.Function<? super T,? extends K> classifier)
grouped in interface StreamableT<T>grouped in interface TransformerSeq<T>grouped in interface Traversable<T>public StreamableTSeq<T> distinct()
distinct in interface StreamableT<T>distinct in interface TransformerSeq<T>distinct in interface Traversable<T>public StreamableTSeq<T> scanLeft(Monoid<T> monoid)
Traversable
assertEquals(asList("", "a", "ab", "abc"),ReactiveSeq.of("a", "b", "c")
.scanLeft(Reducers.toString("")).toList());
scanLeft in interface StreamableT<T>scanLeft in interface TransformerSeq<T>scanLeft in interface Traversable<T>public <U> StreamableTSeq<U> scanLeft(U seed, java.util.function.BiFunction<? super U,? super T,? extends U> function)
Traversable
assertThat(of("a", "b", "c").scanLeft("", String::concat).toList().size(),
is(4));
scanLeft in interface StreamableT<T>scanLeft in interface TransformerSeq<T>scanLeft in interface Traversable<T>public StreamableTSeq<T> scanRight(Monoid<T> monoid)
Traversable
assertThat(of("a", "b", "c").scanRight(Monoid.of("", String::concat)).toList().size(),
is(asList("", "c", "bc", "abc").size()));
scanRight in interface StreamableT<T>scanRight in interface TransformerSeq<T>scanRight in interface Traversable<T>public <U> StreamableTSeq<U> scanRight(U identity, java.util.function.BiFunction<? super T,? super U,? extends U> combiner)
Traversable
assertThat(of("a", "ab", "abc").map(str->str.length()).scanRight(0, (t, u) -> u + t).toList().size(),
is(asList(0, 3, 5, 6).size()));
scanRight in interface StreamableT<T>scanRight in interface TransformerSeq<T>scanRight in interface Traversable<T>public StreamableTSeq<T> sorted()
Traversable
assertThat(ReactiveSeq.of(4,3,6,7)).sorted().toList(),equalTo(Arrays.asList(3,4,6,7)));
sorted in interface StreamableT<T>sorted in interface TransformerSeq<T>sorted in interface Traversable<T>public StreamableTSeq<T> sorted(java.util.Comparator<? super T> c)
Traversable
assertThat(ReactiveSeq.of(4,3,6,7).sorted((a,b) -> b-a).toList(),equalTo(Arrays.asList(7,6,4,3)));
sorted in interface StreamableT<T>sorted in interface TransformerSeq<T>sorted in interface Traversable<T>c - Compartor to sort withpublic StreamableTSeq<T> takeWhile(java.util.function.Predicate<? super T> p)
takeWhile in interface StreamableT<T>takeWhile in interface TransformerSeq<T>takeWhile in interface Traversable<T>public StreamableTSeq<T> dropWhile(java.util.function.Predicate<? super T> p)
dropWhile in interface StreamableT<T>dropWhile in interface TransformerSeq<T>dropWhile in interface Traversable<T>public StreamableTSeq<T> takeUntil(java.util.function.Predicate<? super T> p)
takeUntil in interface StreamableT<T>takeUntil in interface TransformerSeq<T>takeUntil in interface Traversable<T>public StreamableTSeq<T> dropUntil(java.util.function.Predicate<? super T> p)
dropUntil in interface StreamableT<T>dropUntil in interface TransformerSeq<T>dropUntil in interface Traversable<T>public StreamableTSeq<T> dropRight(int num)
dropRight in interface StreamableT<T>dropRight in interface TransformerSeq<T>dropRight in interface Traversable<T>public StreamableTSeq<T> takeRight(int num)
takeRight in interface StreamableT<T>takeRight in interface TransformerSeq<T>takeRight in interface Traversable<T>public StreamableTSeq<T> skip(long num)
Traversable
assertThat(ReactiveSeq.of(4,3,6,7).skip(2).toList(),equalTo(Arrays.asList(6,7)));
skip in interface StreamableT<T>skip in interface TransformerSeq<T>skip in interface Traversable<T>num - Number of elemenets to skippublic StreamableTSeq<T> skipWhile(java.util.function.Predicate<? super T> p)
Traversable
assertThat(ReactiveSeq.of(4,3,6,7).sorted().skipWhile(i->i<6).toList(),equalTo(Arrays.asList(6,7)));
skipWhile in interface StreamableT<T>skipWhile in interface TransformerSeq<T>skipWhile in interface Traversable<T>p - Predicate to skip while truepublic StreamableTSeq<T> skipUntil(java.util.function.Predicate<? super T> p)
Traversable
assertThat(ReactiveSeq.of(4,3,6,7).skipUntil(i->i==6).toList(),equalTo(Arrays.asList(6,7)));
skipUntil in interface StreamableT<T>skipUntil in interface TransformerSeq<T>skipUntil in interface Traversable<T>p - Predicate to skip until truepublic StreamableTSeq<T> limit(long num)
Traversable
assertThat(ReactiveSeq.of(4,3,6,7).limit(2).toList(),equalTo(Arrays.asList(4,3));
limit in interface StreamableT<T>limit in interface TransformerSeq<T>limit in interface Traversable<T>num - Limit element size to numpublic StreamableTSeq<T> limitWhile(java.util.function.Predicate<? super T> p)
Traversable
assertThat(ReactiveSeq.of(4,3,6,7).sorted().limitWhile(i->i<6).toList(),equalTo(Arrays.asList(3,4)));
limitWhile in interface StreamableT<T>limitWhile in interface TransformerSeq<T>limitWhile in interface Traversable<T>p - Limit while predicate is truepublic StreamableTSeq<T> limitUntil(java.util.function.Predicate<? super T> p)
Traversable
assertThat(ReactiveSeq.of(4,3,6,7).limitUntil(i->i==6).toList(),equalTo(Arrays.asList(4,3)));
limitUntil in interface StreamableT<T>limitUntil in interface TransformerSeq<T>limitUntil in interface Traversable<T>p - Limit until predicate is truepublic StreamableTSeq<T> intersperse(T value)
Traversableintersperse in interface StreamableT<T>intersperse in interface TransformerSeq<T>intersperse in interface Traversable<T>public StreamableTSeq<T> reverse()
reverse in interface StreamableT<T>reverse in interface TransformerSeq<T>reverse in interface Traversable<T>public StreamableTSeq<T> shuffle()
shuffle in interface StreamableT<T>shuffle in interface TransformerSeq<T>shuffle in interface Traversable<T>public StreamableTSeq<T> skipLast(int num)
TraversableskipLast in interface StreamableT<T>skipLast in interface TransformerSeq<T>skipLast in interface Traversable<T>public StreamableTSeq<T> limitLast(int num)
Traversable
assertThat(ReactiveSeq.of(1,2,3,4,5)
.limitLast(2)
.collect(Collectors.toList()),equalTo(Arrays.asList(4,5)));
limitLast in interface StreamableT<T>limitLast in interface TransformerSeq<T>limitLast in interface Traversable<T>num - of elements to return (last elements)public StreamableTSeq<T> onEmpty(T value)
onEmpty in interface StreamableT<T>onEmpty in interface TransformerSeq<T>onEmpty in interface Traversable<T>public StreamableTSeq<T> onEmptyGet(java.util.function.Supplier<? extends T> supplier)
onEmptyGet in interface StreamableT<T>onEmptyGet in interface TransformerSeq<T>onEmptyGet in interface Traversable<T>public <X extends java.lang.Throwable> StreamableTSeq<T> onEmptyThrow(java.util.function.Supplier<? extends X> supplier)
onEmptyThrow in interface StreamableT<T>onEmptyThrow in interface TransformerSeq<T>onEmptyThrow in interface Traversable<T>public StreamableTSeq<T> shuffle(java.util.Random random)
shuffle in interface StreamableT<T>shuffle in interface TransformerSeq<T>shuffle in interface Traversable<T>public StreamableTSeq<T> slice(long from, long to)
slice in interface StreamableT<T>slice in interface TransformerSeq<T>slice in interface Traversable<T>public <U extends java.lang.Comparable<? super U>> StreamableTSeq<T> sorted(java.util.function.Function<? super T,? extends U> function)
sorted in interface StreamableT<T>sorted in interface TransformerSeq<T>sorted in interface Traversable<T>public int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object o)
equals in class java.lang.Object