public abstract class AbstractSeq<S extends AbstractSeq<S>> extends Object implements Seq<S>
| Constructor and Description |
|---|
AbstractSeq() |
| Modifier and Type | Method and Description |
|---|---|
S |
concatenate(S other)
Returns a concatenation of this and
other sequence (so this will be followed by other in the
result). |
S |
getRange(Range range)
Returns a subsequence of this bounded by specified
range. |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetBuilder, getRange, sizepublic S getRange(Range range)
Seqrange.getRange in interface Seq<S extends AbstractSeq<S>>range - a range that defines starting (inclusive) and ending (exclusive) points of subsequencerange.public S concatenate(S other)
Seqother sequence (so this will be followed by other in the
result).concatenate in interface Seq<S extends AbstractSeq<S>>other - other sequenceother sequencesCopyright © 2018. All rights reserved.