T
- component typepublic interface LinearSeq<T> extends Seq<T>
Efficient head()
, tail()
, and isEmpty()
methods are characteristic for linear sequences.
Modifier and Type | Field and Description |
---|---|
static long |
serialVersionUID |
Modifier and Type | Method and Description |
---|---|
LinearSeq<T> |
append(T element)
Appends an element to this.
|
LinearSeq<T> |
appendAll(Iterable<? extends T> elements)
Appends all given elements to this.
|
LinearSeq<T> |
asJava(Consumer<? super List<T>> action)
|
LinearSeq<T> |
asJavaMutable(Consumer<? super List<T>> action)
|
default PartialFunction<Integer,T> |
asPartialFunction()
Turns this
Seq into a PartialFunction which is defined at a specific index, if this Seq
contains at least index + 1 elements. |
<R> LinearSeq<R> |
collect(PartialFunction<? super T,? extends R> partialFunction)
Collects all elements that are in the domain of the given
partialFunction by mapping the elements to type R . |
LinearSeq<? extends LinearSeq<T>> |
combinations()
Returns the union of all combinations from k = 0 to length().
|
LinearSeq<? extends LinearSeq<T>> |
combinations(int k)
Returns the k-combination of this traversable, i.e.
|
Iterator<? extends LinearSeq<T>> |
crossProduct(int power)
Calculates the n-ary cartesian power (or cross product or simply product) of this.
|
LinearSeq<T> |
distinct()
Returns a new version of this which contains no duplicates.
|
LinearSeq<T> |
distinctBy(Comparator<? super T> comparator)
Returns a new version of this which contains no duplicates.
|
<U> LinearSeq<T> |
distinctBy(Function<? super T,? extends U> keyExtractor)
Returns a new version of this which contains no duplicates.
|
LinearSeq<T> |
drop(int n)
Drops the first n elements of this or all elements, if this length < n.
|
LinearSeq<T> |
dropRight(int n)
Drops the last n elements of this or all elements, if this length < n.
|
LinearSeq<T> |
dropRightUntil(Predicate<? super T> predicate)
Drops elements until the predicate holds for the current element, starting from the end.
|
LinearSeq<T> |
dropRightWhile(Predicate<? super T> predicate)
Drops elements while the predicate holds for the current element, starting from the end.
|
LinearSeq<T> |
dropUntil(Predicate<? super T> predicate)
Drops elements until the predicate holds for the current element.
|
LinearSeq<T> |
dropWhile(Predicate<? super T> predicate)
Drops elements while the predicate holds for the current element.
|
LinearSeq<T> |
filter(Predicate<? super T> predicate)
Returns a new traversable consisting of all elements which satisfy the given predicate.
|
<U> LinearSeq<U> |
flatMap(Function<? super T,? extends Iterable<? extends U>> mapper)
FlatMaps this Traversable.
|
<C> Map<C,? extends LinearSeq<T>> |
groupBy(Function<? super T,? extends C> classifier)
Groups this elements by classifying the elements.
|
Iterator<? extends LinearSeq<T>> |
grouped(int size)
Groups this
Traversable into fixed size blocks. |
default int |
indexOfSlice(Iterable<? extends T> that,
int from)
Finds first index after or at a start index where this sequence contains a given sequence as a slice.
|
default int |
indexWhere(Predicate<? super T> predicate,
int from)
Finds index of the first element satisfying some predicate after or at
some start index.
|
LinearSeq<T> |
init()
Dual of Traversable.tail(), returning all elements except the last.
|
Option<? extends LinearSeq<T>> |
initOption()
Dual of Traversable.tailOption(), returning all elements except the last as
Option . |
LinearSeq<T> |
insert(int index,
T element)
Inserts the given element at the specified index.
|
LinearSeq<T> |
insertAll(int index,
Iterable<? extends T> elements)
Inserts the given elements at the specified index.
|
LinearSeq<T> |
intersperse(T element)
Inserts an element between all elements of this Traversable.
|
default boolean |
isDefinedAt(Integer index)
Deprecated.
|
default int |
lastIndexOfSlice(Iterable<? extends T> that,
int end)
Finds last index before or at a given end index where this sequence contains a given sequence as a slice.
|
default int |
lastIndexWhere(Predicate<? super T> predicate,
int end)
Finds index of last element satisfying some predicate before or at given
end index.
|
<U> LinearSeq<U> |
map(Function<? super T,? extends U> mapper)
Maps the elements of this
Traversable to elements of a new type preserving their order, if any. |
static <T> LinearSeq<T> |
narrow(LinearSeq<? extends T> linearSeq)
Narrows a widened
LinearSeq<? extends T> to LinearSeq<T>
by performing a type-safe cast. |
LinearSeq<T> |
orElse(Iterable<? extends T> other)
Returns this
Traversable if it is nonempty, otherwise return the alternative. |
LinearSeq<T> |
orElse(Supplier<? extends Iterable<? extends T>> supplier)
Returns this
Traversable if it is nonempty, otherwise return the result of evaluating supplier. |
LinearSeq<T> |
padTo(int length,
T element)
A copy of this sequence with an element appended until a given target length is reached.
|
Tuple2<? extends LinearSeq<T>,? extends LinearSeq<T>> |
partition(Predicate<? super T> predicate)
Creates a partition of this
Traversable by splitting this elements in two in distinct traversables
according to a predicate. |
LinearSeq<T> |
patch(int from,
Iterable<? extends T> that,
int replaced)
Produces a new list where a slice of elements in this list is replaced by another sequence.
|
LinearSeq<T> |
peek(Consumer<? super T> action)
Performs the given
action on the first element if this is an eager implementation. |
LinearSeq<? extends LinearSeq<T>> |
permutations()
Computes all unique permutations.
|
LinearSeq<T> |
prepend(T element)
Prepends an element to this.
|
LinearSeq<T> |
prependAll(Iterable<? extends T> elements)
Prepends all given elements to this.
|
LinearSeq<T> |
reject(Predicate<? super T> predicate)
Returns a new traversable consisting of all elements which do not satisfy the given predicate.
|
LinearSeq<T> |
remove(T element)
Removes the first occurrence of the given element.
|
LinearSeq<T> |
removeAll(Iterable<? extends T> elements)
Removes all occurrences of the given elements.
|
LinearSeq<T> |
removeAll(Predicate<? super T> predicate)
Deprecated.
|
LinearSeq<T> |
removeAll(T element)
Removes all occurrences of the given element.
|
LinearSeq<T> |
removeAt(int index)
Removes the element at the specified position in this sequence.
|
LinearSeq<T> |
removeFirst(Predicate<T> predicate)
Removes the first occurrence that satisfy predicate
|
LinearSeq<T> |
removeLast(Predicate<T> predicate)
Removes the last occurrence that satisfy predicate
|
LinearSeq<T> |
replace(T currentElement,
T newElement)
Replaces the first occurrence (if exists) of the given currentElement with newElement.
|
LinearSeq<T> |
replaceAll(T currentElement,
T newElement)
Replaces all occurrences of the given currentElement with newElement.
|
LinearSeq<T> |
retainAll(Iterable<? extends T> elements)
Keeps all occurrences of the given elements from this.
|
LinearSeq<T> |
reverse()
Reverses the order of elements.
|
default Iterator<T> |
reverseIterator()
An iterator yielding elements in reversed order.
|
LinearSeq<T> |
rotateLeft(int n)
Circular rotates the elements by the specified distance to the left direction.
|
LinearSeq<T> |
rotateRight(int n)
Circular rotates the elements by the specified distance to the right direction.
|
LinearSeq<T> |
scan(T zero,
BiFunction<? super T,? super T,? extends T> operation)
Computes a prefix scan of the elements of the collection.
|
<U> LinearSeq<U> |
scanLeft(U zero,
BiFunction<? super U,? super T,? extends U> operation)
Produces a collection containing cumulative results of applying the
operator going left to right.
|
<U> LinearSeq<U> |
scanRight(U zero,
BiFunction<? super T,? super U,? extends U> operation)
Produces a collection containing cumulative results of applying the
operator going right to left.
|
default int |
search(T element)
Searches this sequence for a specific element using a linear search.
|
default int |
search(T element,
Comparator<? super T> comparator)
Searches this sequence for a specific element using a linear search.
|
default int |
segmentLength(Predicate<? super T> predicate,
int from)
Computes length of longest segment whose elements all satisfy some predicate.
|
LinearSeq<T> |
shuffle()
Randomize the order of the elements in the current sequence.
|
LinearSeq<T> |
slice(int beginIndex,
int endIndex)
Returns a Seq that is a slice of this.
|
Iterator<? extends LinearSeq<T>> |
slideBy(Function<? super T,?> classifier)
Slides a non-overlapping window of a variable size over this
Traversable . |
Iterator<? extends LinearSeq<T>> |
sliding(int size)
Slides a window of a specific
size and step size 1 over this Traversable by calling
Traversable.sliding(int, int) . |
Iterator<? extends LinearSeq<T>> |
sliding(int size,
int step)
Slides a window of a specific
size and step size over this Traversable . |
<U> LinearSeq<T> |
sortBy(Comparator<? super U> comparator,
Function<? super T,? extends U> mapper)
Sorts this elements by comparing the elements in a different domain, using the given
mapper . |
<U extends Comparable<? super U>> |
sortBy(Function<? super T,? extends U> mapper)
Sorts this elements by comparing the elements in a different domain, using the given
mapper . |
LinearSeq<T> |
sorted()
Sorts this elements according to their natural order.
|
LinearSeq<T> |
sorted(Comparator<? super T> comparator)
Sorts this elements according to the provided
Comparator . |
Tuple2<? extends LinearSeq<T>,? extends LinearSeq<T>> |
span(Predicate<? super T> predicate)
Returns a tuple where the first element is the longest prefix of elements that satisfy the given
predicate and the second element is the remainder. |
LinearSeq<T> |
subSequence(int beginIndex)
Returns a Seq that is a subsequence of this.
|
LinearSeq<T> |
subSequence(int beginIndex,
int endIndex)
Returns a Seq that is a subsequence of this.
|
LinearSeq<T> |
tail()
Drops the first element of a non-empty Traversable.
|
Option<? extends LinearSeq<T>> |
tailOption()
Drops the first element of a non-empty Traversable and returns an
Option . |
LinearSeq<T> |
take(int n)
Takes the first n elements of this or all elements, if this length < n.
|
LinearSeq<T> |
takeRight(int n)
Takes the last n elements of this or all elements, if this length < n.
|
LinearSeq<T> |
takeRightUntil(Predicate<? super T> predicate)
Takes elements until the predicate holds for the current element, starting from the end.
|
LinearSeq<T> |
takeRightWhile(Predicate<? super T> predicate)
Takes elements while the predicate holds for the current element, starting from the end.
|
LinearSeq<T> |
takeUntil(Predicate<? super T> predicate)
Takes elements until the predicate holds for the current element.
|
LinearSeq<T> |
takeWhile(Predicate<? super T> predicate)
Takes elements while the predicate holds for the current element.
|
<T1,T2> Tuple2<? extends LinearSeq<T1>,? extends LinearSeq<T2>> |
unzip(Function<? super T,Tuple2<? extends T1,? extends T2>> unzipper)
Unzips this elements by mapping this elements to pairs which are subsequently split into two distinct
sets.
|
LinearSeq<T> |
update(int index,
Function<? super T,? extends T> updater)
Updates the given element at the specified index using the specified function.
|
LinearSeq<T> |
update(int index,
T element)
Updates the given element at the specified index.
|
<U> LinearSeq<Tuple2<T,U>> |
zip(Iterable<? extends U> that)
Returns a traversable formed from this traversable and another Iterable collection by combining
corresponding elements in pairs.
|
<U> LinearSeq<Tuple2<T,U>> |
zipAll(Iterable<? extends U> that,
T thisElem,
U thatElem)
Returns a traversable formed from this traversable and another Iterable by combining corresponding elements in
pairs.
|
<U,R> LinearSeq<R> |
zipWith(Iterable<? extends U> that,
BiFunction<? super T,? super U,? extends R> mapper)
Returns a traversable formed from this traversable and another Iterable collection by mapping elements.
|
LinearSeq<Tuple2<T,Integer>> |
zipWithIndex()
Zips this traversable with its indices.
|
<U> LinearSeq<U> |
zipWithIndex(BiFunction<? super T,? super Integer,? extends U> mapper)
Returns a traversable formed from this traversable and another Iterable collection by mapping elements.
|
apply, asJava, asJavaMutable, containsSlice, crossProduct, crossProduct, endsWith, foldRight, get, indexOf, indexOf, indexOfOption, indexOfOption, indexOfSlice, indexOfSliceOption, indexOfSliceOption, indexWhere, indexWhereOption, indexWhereOption, isSequential, iterator, lastIndexOf, lastIndexOf, lastIndexOfOption, lastIndexOfOption, lastIndexOfSlice, lastIndexOfSliceOption, lastIndexOfSliceOption, lastIndexWhere, lastIndexWhereOption, lastIndexWhereOption, leftPadTo, lift, narrow, prefixLength, splitAt, splitAt, splitAtInclusive, startsWith, startsWith, unzip3, withDefault, withDefaultValue
arrangeBy, average, containsAll, count, equals, existsUnique, find, findLast, foldLeft, forEachWithIndex, get, hasDefiniteSize, hashCode, head, headOption, isDistinct, isEmpty, isOrdered, isSingleValued, isTraversableAgain, iterator, last, lastOption, length, max, maxBy, maxBy, min, minBy, minBy, mkCharSeq, mkCharSeq, mkCharSeq, mkString, mkString, mkString, narrow, nonEmpty, product, reduceLeft, reduceLeftOption, reduceRight, reduceRightOption, single, singleOption, size, spliterator, sum
fold, reduce, reduceOption
collect, collect, contains, corresponds, eq, exists, forAll, forEach, getOrElse, getOrElse, getOrElseThrow, getOrElseTry, getOrNull, isAsync, isLazy, narrow, out, out, stderr, stdout, stringPrefix, toArray, toCharSeq, toCompletableFuture, toEither, toEither, toInvalid, toInvalid, toJavaArray, toJavaArray, toJavaArray, toJavaCollection, toJavaList, toJavaList, toJavaMap, toJavaMap, toJavaMap, toJavaOptional, toJavaParallelStream, toJavaSet, toJavaSet, toJavaStream, toLeft, toLeft, toLinkedMap, toLinkedMap, toLinkedSet, toList, toMap, toMap, toOption, toPriorityQueue, toPriorityQueue, toQueue, toRight, toRight, toSet, toSortedMap, toSortedMap, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toStream, toString, toTree, toTree, toTry, toTry, toValid, toValid, toValidation, toValidation, toVector
getIfDefined, unlift
static final long serialVersionUID
static <T> LinearSeq<T> narrow(LinearSeq<? extends T> linearSeq)
LinearSeq<? extends T>
to LinearSeq<T>
by performing a type-safe cast. This is eligible because immutable/read-only
collections are covariant.T
- Component type of the LinearSeq
.linearSeq
- A LinearSeq
.linearSeq
instance as narrowed type LinearSeq<T>
.LinearSeq<T> append(T element)
Seq
LinearSeq<T> appendAll(Iterable<? extends T> elements)
Seq
@GwtIncompatible LinearSeq<T> asJava(Consumer<? super List<T>> action)
Seq
asJava
in interface Seq<T>
action
- A side-effecting unit of work that operates on an immutable java.util.List
view.Seq.asJava()
@GwtIncompatible LinearSeq<T> asJavaMutable(Consumer<? super List<T>> action)
Seq
asJavaMutable
in interface Seq<T>
action
- A side-effecting unit of work that operates on a mutable java.util.List
view.java.util.List
view or a new instance of this type, if write operations are performed on the java.util.List
view.Seq.asJavaMutable()
default PartialFunction<Integer,T> asPartialFunction() throws IndexOutOfBoundsException
Seq
Seq
into a PartialFunction
which is defined at a specific index, if this Seq
contains at least index + 1 elements. When applied to a defined index, the partial function will return
the value of this Seq
at the specified index.asPartialFunction
in interface Seq<T>
PartialFunction
IndexOutOfBoundsException
- if this is empty, index < 0 or index >= length()<R> LinearSeq<R> collect(PartialFunction<? super T,? extends R> partialFunction)
Traversable
partialFunction
by mapping the elements to type R
.
More specifically, for each of this elements in iteration order first it is checked
partialFunction.isDefinedAt(element)
If the elements makes it through that filter, the mapped instance is added to the result collection
R newElement = partialFunction.apply(element)
Note:If this Traversable
is ordered (i.e. extends Ordered
,
the caller of collect
has to ensure that the elements are comparable (i.e. extend Comparable
).collect
in interface Seq<T>
collect
in interface Traversable<T>
R
- The new element typepartialFunction
- A function that is not necessarily defined of all elements of this traversable.Traversable
instance containing elements of type R
LinearSeq<? extends LinearSeq<T>> combinations()
Seq
Examples:
[].combinations() = [[]]
[1,2,3].combinations() = [
[], // k = 0
[1], [2], [3], // k = 1
[1,2], [1,3], [2,3], // k = 2
[1,2,3] // k = 3
]
combinations
in interface Seq<T>
LinearSeq<? extends LinearSeq<T>> combinations(int k)
Seq
combinations
in interface Seq<T>
k
- Size of subsetsIterator<? extends LinearSeq<T>> crossProduct(int power)
Seq
Example:
// = ((A,A), (A,B), (A,C), ..., (B,A), (B,B), ..., (Z,Y), (Z,Z))
CharSeq.rangeClosed('A', 'Z').crossProduct(2);
Cartesian power of negative value will return empty iterator.
Example:
// = ()
CharSeq.rangeClosed('A', 'Z').crossProduct(-1);
crossProduct
in interface Seq<T>
power
- the number of cartesian multiplicationsLinearSeq<T> distinct()
Traversable
equals
.LinearSeq<T> distinctBy(Comparator<? super T> comparator)
Traversable
comparator
.distinctBy
in interface Seq<T>
distinctBy
in interface Traversable<T>
comparator
- A comparatorTraversable
containing this elements without duplicates<U> LinearSeq<T> distinctBy(Function<? super T,? extends U> keyExtractor)
Traversable
equals
.
The elements of the result are determined in the order of their occurrence - first match wins.
distinctBy
in interface Seq<T>
distinctBy
in interface Traversable<T>
U
- key typekeyExtractor
- A key extractorTraversable
containing this elements without duplicatesLinearSeq<T> drop(int n)
Traversable
LinearSeq<T> dropUntil(Predicate<? super T> predicate)
Traversable
LinearSeq<T> dropWhile(Predicate<? super T> predicate)
Traversable
Note: This is essentially the same as dropUntil(predicate.negate())
.
It is intended to be used with method references, which cannot be negated directly.
LinearSeq<T> dropRight(int n)
Traversable
LinearSeq<T> dropRightUntil(Predicate<? super T> predicate)
Seq
dropRightUntil
in interface Seq<T>
predicate
- A condition tested subsequently for this elements, starting from the end.LinearSeq<T> dropRightWhile(Predicate<? super T> predicate)
Seq
Note: This is essentially the same as dropRightUntil(predicate.negate())
.
It is intended to be used with method references, which cannot be negated directly.
dropRightWhile
in interface Seq<T>
predicate
- A condition tested subsequently for this elements, starting from the end.LinearSeq<T> filter(Predicate<? super T> predicate)
Traversable
LinearSeq<T> reject(Predicate<? super T> predicate)
Traversable
The default implementation is equivalent to
filter(predicate.negate()
<U> LinearSeq<U> flatMap(Function<? super T,? extends Iterable<? extends U>> mapper)
Traversable
<C> Map<C,? extends LinearSeq<T>> groupBy(Function<? super T,? extends C> classifier)
Traversable
groupBy
in interface Seq<T>
groupBy
in interface Traversable<T>
C
- classified class typeclassifier
- A function which classifies elements into classesTraversable.arrangeBy(Function)
Iterator<? extends LinearSeq<T>> grouped(int size)
Traversable
Traversable
into fixed size blocks.
Let length be the length of this Iterable. Then grouped is defined as follows:
this.isEmpty()
, the resulting Iterator
is empty.size <= length
, the resulting Iterator
will contain length / size
blocks of size
size
and maybe a non-empty block of size length % size
, if there are remaining elements.size > length
, the resulting Iterator
will contain one block of size length
.
[].grouped(1) = []
[].grouped(0) throws
[].grouped(-1) throws
[1,2,3,4].grouped(2) = [[1,2],[3,4]]
[1,2,3,4,5].grouped(2) = [[1,2],[3,4],[5]]
[1,2,3,4].grouped(5) = [[1,2,3,4]]
Please note that grouped(int)
is a special case of Traversable.sliding(int, int), i.e.
grouped(size)
is the same as sliding(size, size)
.default int indexOfSlice(Iterable<? extends T> that, int from)
Seq
indexOfSlice
in interface Seq<T>
that
- the sequence to testfrom
- the start indexdefault int indexWhere(Predicate<? super T> predicate, int from)
Seq
indexWhere
in interface Seq<T>
predicate
- the predicate used to test elements.from
- the start index>= from
of the first element of this Seq that
satisfies the given predicate
, or -1
, if none exists.LinearSeq<T> init()
Traversable
Option<? extends LinearSeq<T>> initOption()
Traversable
Option
.initOption
in interface Seq<T>
initOption
in interface Traversable<T>
Some(traversable)
or None
if this is empty.LinearSeq<T> insert(int index, T element)
Seq
LinearSeq<T> insertAll(int index, Iterable<? extends T> elements)
Seq
LinearSeq<T> intersperse(T element)
Seq
intersperse
in interface Seq<T>
element
- An element.@Deprecated default boolean isDefinedAt(Integer index)
PartialFunction
isDefinedAt
in interface PartialFunction<Integer,T>
index
- a potential function argumentdefault int lastIndexOfSlice(Iterable<? extends T> that, int end)
Seq
lastIndexOfSlice
in interface Seq<T>
that
- the sequence to testend
- the end indexdefault int lastIndexWhere(Predicate<? super T> predicate, int end)
Seq
lastIndexWhere
in interface Seq<T>
predicate
- the predicate used to test elements.end
- the maximum index of the search<= end
of the last element of this Seq that
satisfies the given predicate
, or -1
, if none exists.<U> LinearSeq<U> map(Function<? super T,? extends U> mapper)
Traversable
Traversable
to elements of a new type preserving their order, if any.LinearSeq<T> orElse(Iterable<? extends T> other)
Traversable
Traversable
if it is nonempty, otherwise return the alternative.LinearSeq<T> orElse(Supplier<? extends Iterable<? extends T>> supplier)
Traversable
Traversable
if it is nonempty, otherwise return the result of evaluating supplier.LinearSeq<T> padTo(int length, T element)
Seq
Note: lazily-evaluated Seq implementations need to process all elements in order to gather the overall length.
LinearSeq<T> patch(int from, Iterable<? extends T> that, int replaced)
Seq
Tuple2<? extends LinearSeq<T>,? extends LinearSeq<T>> partition(Predicate<? super T> predicate)
Traversable
Traversable
by splitting this elements in two in distinct traversables
according to a predicate.partition
in interface Seq<T>
partition
in interface Traversable<T>
predicate
- A predicate which classifies an element if it is in the first or the second traversable.Traversable
contains all elements that satisfy the given predicate
, the second Traversable
contains all elements that don't. The original order of elements is preserved.LinearSeq<T> peek(Consumer<? super T> action)
Value
action
on the first element if this is an eager implementation.
Performs the given action
on all elements (the first immediately, successive deferred),
if this is a lazy implementation.LinearSeq<? extends LinearSeq<T>> permutations()
Seq
Example:
[].permutations() = []
[1,2,3].permutations() = [
[1,2,3],
[1,3,2],
[2,1,3],
[2,3,1],
[3,1,2],
[3,2,1]
]
permutations
in interface Seq<T>
LinearSeq<T> prepend(T element)
Seq
LinearSeq<T> prependAll(Iterable<? extends T> elements)
Seq
prependAll
in interface Seq<T>
elements
- An Iterable of elementsLinearSeq<T> remove(T element)
Seq
LinearSeq<T> removeFirst(Predicate<T> predicate)
Seq
removeFirst
in interface Seq<T>
predicate
- an predicateLinearSeq<T> removeLast(Predicate<T> predicate)
Seq
removeLast
in interface Seq<T>
predicate
- an predicateLinearSeq<T> removeAt(int index)
Seq
LinearSeq<T> removeAll(T element)
Seq
LinearSeq<T> removeAll(Iterable<? extends T> elements)
Seq
@Deprecated LinearSeq<T> removeAll(Predicate<? super T> predicate)
Seq
LinearSeq<T> replace(T currentElement, T newElement)
Traversable
replace
in interface Seq<T>
replace
in interface Traversable<T>
currentElement
- An element to be substituted.newElement
- A replacement for currentElement.LinearSeq<T> replaceAll(T currentElement, T newElement)
Traversable
replaceAll
in interface Seq<T>
replaceAll
in interface Traversable<T>
currentElement
- An element to be substituted.newElement
- A replacement for currentElement.LinearSeq<T> retainAll(Iterable<? extends T> elements)
Traversable
LinearSeq<T> reverse()
Seq
default Iterator<T> reverseIterator()
Seq
Note: xs.reverseIterator()
is the same as xs.reverse().iterator()
but might
be more efficient.
reverseIterator
in interface Seq<T>
LinearSeq<T> rotateLeft(int n)
Seq
// = List(3, 4, 5, 1, 2)
List.of(1, 2, 3, 4, 5).rotateLeft(2);
rotateLeft
in interface Seq<T>
n
- distance of left rotationLinearSeq<T> rotateRight(int n)
Seq
// = List(4, 5, 1, 2, 3)
List.of(1, 2, 3, 4, 5).rotateRight(2);
rotateRight
in interface Seq<T>
n
- distance of right rotationLinearSeq<T> shuffle()
Seq
LinearSeq<T> scan(T zero, BiFunction<? super T,? super T,? extends T> operation)
Traversable
scan
in interface Seq<T>
scan
in interface Traversable<T>
zero
- neutral element for the operator opoperation
- the associative operator for the scan<U> LinearSeq<U> scanLeft(U zero, BiFunction<? super U,? super T,? extends U> operation)
Traversable
scanLeft
in interface Seq<T>
scanLeft
in interface Traversable<T>
U
- the type of the elements in the resulting collectionzero
- the initial valueoperation
- the binary operator applied to the intermediate result and the element<U> LinearSeq<U> scanRight(U zero, BiFunction<? super T,? super U,? extends U> operation)
Traversable
scanRight
in interface Seq<T>
scanRight
in interface Traversable<T>
U
- the type of the elements in the resulting collectionzero
- the initial valueoperation
- the binary operator applied to the intermediate result and the elementdefault int segmentLength(Predicate<? super T> predicate, int from)
Seq
Note: may not terminate for infinite sequences.
segmentLength
in interface Seq<T>
predicate
- the predicate used to test elements.from
- the index where the search starts.LinearSeq<T> slice(int beginIndex, int endIndex)
Seq
beginIndex
and extends to the element at index endIndex - 1
.
Examples:
List.of(1, 2, 3, 4).slice(1, 3); // = (2, 3)
List.of(1, 2, 3, 4).slice(0, 4); // = (1, 2, 3, 4)
List.of(1, 2, 3, 4).slice(2, 2); // = ()
List.of(1, 2).slice(1, 0); // = ()
List.of(1, 2).slice(-10, 10); // = (1, 2)
See also Seq.subSequence(int, int)
which throws in some cases instead of returning a sequence.Iterator<? extends LinearSeq<T>> slideBy(Function<? super T,?> classifier)
Traversable
Traversable
.
Each window contains elements with the same class, as determined by classifier
. Two consecutive
values in this Traversable
will be in the same window only if classifier
returns equal
values for them. Otherwise, the values will constitute the last element of the previous window and the
first element of the next window.
Examples:
[].slideBy(Function.identity()) = []
[1,2,3,4,4,5].slideBy(Function.identity()) = [[1],[2],[3],[4,4],[5]]
[1,2,3,10,12,5,7,20,29].slideBy(x -> x/10) = [[1,2,3],[10,12],[5,7],[20,29]]
Iterator<? extends LinearSeq<T>> sliding(int size)
Traversable
size
and step size 1 over this Traversable
by calling
Traversable.sliding(int, int)
.Iterator<? extends LinearSeq<T>> sliding(int size, int step)
Traversable
size
and step
size over this Traversable
.
Examples:
[].sliding(1,1) = []
[1,2,3,4,5].sliding(2,3) = [[1,2],[4,5]]
[1,2,3,4,5].sliding(2,4) = [[1,2],[5]]
[1,2,3,4,5].sliding(2,5) = [[1,2]]
[1,2,3,4].sliding(5,3) = [[1,2,3,4],[4]]
LinearSeq<T> sorted()
Seq
Comparable
, a java.lang.ClassCastException
may be thrown.LinearSeq<T> sorted(Comparator<? super T> comparator)
Seq
Comparator
. If this elements are not
Comparable
, a java.lang.ClassCastException
may be thrown.<U extends Comparable<? super U>> LinearSeq<T> sortBy(Function<? super T,? extends U> mapper)
Seq
mapper
.<U> LinearSeq<T> sortBy(Comparator<? super U> comparator, Function<? super T,? extends U> mapper)
Seq
mapper
.Tuple2<? extends LinearSeq<T>,? extends LinearSeq<T>> span(Predicate<? super T> predicate)
Traversable
predicate
and the second element is the remainder.LinearSeq<T> subSequence(int beginIndex)
Seq
beginIndex
and extends to the end of this Seq.
Examples:
List.of(1, 2).subSequence(0); // = (1, 2)
List.of(1, 2).subSequence(1); // = (2)
List.of(1, 2).subSequence(2); // = ()
List.of(1, 2).subSequence(10); // throws IndexOutOfBoundsException
List.of(1, 2).subSequence(-10); // throws IndexOutOfBoundsException
See also Seq.drop(int)
which is similar but does not throw.subSequence
in interface Seq<T>
beginIndex
- the beginning index, inclusiveLinearSeq<T> subSequence(int beginIndex, int endIndex)
Seq
beginIndex
and extends to the element at index endIndex - 1
.
Examples:
List.of(1, 2, 3, 4).subSequence(1, 3); // = (2, 3)
List.of(1, 2, 3, 4).subSequence(0, 4); // = (1, 2, 3, 4)
List.of(1, 2, 3, 4).subSequence(2, 2); // = ()
List.of(1, 2).subSequence(1, 0); // throws IndexOutOfBoundsException
List.of(1, 2).subSequence(-10, 1); // throws IndexOutOfBoundsException
List.of(1, 2).subSequence(0, 10); // throws IndexOutOfBoundsException
See also Seq.slice(int, int)
which returns an empty sequence instead of throwing.subSequence
in interface Seq<T>
beginIndex
- the beginning index, inclusiveendIndex
- the end index, exclusiveLinearSeq<T> tail()
Traversable
Option<? extends LinearSeq<T>> tailOption()
Traversable
Option
.tailOption
in interface Seq<T>
tailOption
in interface Traversable<T>
Some(traversable)
or None
if this is empty.LinearSeq<T> take(int n)
Traversable
The result is equivalent to sublist(0, max(0, min(length(), n)))
but does not throw if n < 0
or
n > length()
.
In the case of n < 0
the empty instance is returned, in the case of n > length()
this is returned.
LinearSeq<T> takeUntil(Predicate<? super T> predicate)
Traversable
Note: This is essentially the same as takeWhile(predicate.negate())
. It is intended to be used with
method references, which cannot be negated directly.
LinearSeq<T> takeWhile(Predicate<? super T> predicate)
Traversable
LinearSeq<T> takeRight(int n)
Traversable
The result is equivalent to sublist(max(0, min(length(), length() - n)), n)
, i.e. takeRight will not
throw if n < 0
or n > length()
.
In the case of n < 0
the empty instance is returned, in the case of n > length()
this is returned.
LinearSeq<T> takeRightUntil(Predicate<? super T> predicate)
Seq
takeRightUntil
in interface Seq<T>
predicate
- A condition tested subsequently for this elements, starting from the end.LinearSeq<T> takeRightWhile(Predicate<? super T> predicate)
Seq
Note: This is essentially the same as takeRightUntil(predicate.negate())
.
It is intended to be used with method references, which cannot be negated directly.
takeRightWhile
in interface Seq<T>
predicate
- A condition tested subsequently for this elements, starting from the end.<T1,T2> Tuple2<? extends LinearSeq<T1>,? extends LinearSeq<T2>> unzip(Function<? super T,Tuple2<? extends T1,? extends T2>> unzipper)
Traversable
unzip
in interface Seq<T>
unzip
in interface Traversable<T>
T1
- 1st element type of a pair returned by unzipperT2
- 2nd element type of a pair returned by unzipperunzipper
- a function which converts elements of this to pairsLinearSeq<T> update(int index, T element)
Seq
LinearSeq<T> update(int index, Function<? super T,? extends T> updater)
Seq
<U> LinearSeq<Tuple2<T,U>> zip(Iterable<? extends U> that)
Traversable
The length of the returned traversable is the minimum of the lengths of this traversable and that
iterable.
zip
in interface Seq<T>
zip
in interface Traversable<T>
U
- The type of the second half of the returned pairs.that
- The Iterable providing the second half of each result pair.that
iterable.<U,R> LinearSeq<R> zipWith(Iterable<? extends U> that, BiFunction<? super T,? super U,? extends R> mapper)
Traversable
The length of the returned traversable is the minimum of the lengths of this traversable and that
iterable.
zipWith
in interface Seq<T>
zipWith
in interface Traversable<T>
U
- The type of the second parameter of the mapper.R
- The type of the mapped elements.that
- The Iterable providing the second parameter of the mapper.mapper
- a mapper.that
iterable.<U> LinearSeq<Tuple2<T,U>> zipAll(Iterable<? extends U> that, T thisElem, U thatElem)
Traversable
The length of the returned traversable is the maximum of the lengths of this traversable and that
iterable.
Special case: if this traversable is shorter than that elements, and that elements contains duplicates, the resulting traversable may be shorter than the maximum of the lengths of this and that because a traversable contains an element at most once.
If this Traversable is shorter than that, thisElem values are used to fill the result. If that is shorter than this Traversable, thatElem values are used to fill the result.
zipAll
in interface Seq<T>
zipAll
in interface Traversable<T>
U
- The type of the second half of the returned pairs.that
- The Iterable providing the second half of each result pair.thisElem
- The element to be used to fill up the result if this traversable is shorter than that.thatElem
- The element to be used to fill up the result if that is shorter than this traversable.LinearSeq<Tuple2<T,Integer>> zipWithIndex()
Traversable
zipWithIndex
in interface Seq<T>
zipWithIndex
in interface Traversable<T>
<U> LinearSeq<U> zipWithIndex(BiFunction<? super T,? super Integer,? extends U> mapper)
Traversable
The length of the returned traversable is the minimum of the lengths of this traversable and that
iterable.
zipWithIndex
in interface Seq<T>
zipWithIndex
in interface Traversable<T>
U
- The type of the mapped elements.mapper
- a mapper.that
iterable.default int search(T element)
search
in interface Seq<T>
element
- the element to findClassCastException
- if T cannot be cast to Comparable<? super T>
default int search(T element, Comparator<? super T> comparator)
search
in interface Seq<T>
element
- the element to findcomparator
- the comparator by which this sequence is orderedCopyright © 2021. All Rights Reserved.