Searched defs:reverse (Results 1 - 6 of 6) sorted by relevance

/ropes-1.1.3/src/org/ahmadsoft/ropes/impl/
H A DReverseRope.java93 public Rope reverse() { method in class:ReverseRope
123 return this.rope.subSequence(this.length() - end, this.length() - start).reverse();
H A DConcatenationRope.java160 public Rope reverse() { method in class:ConcatenationRope
161 return new ConcatenationRope(this.getRight().reverse(), this.getLeft().reverse());
H A DFlatCharArrayRope.java174 public Rope reverse() { method in class:FlatCharArrayRope
H A DFlatCharSequenceRope.java94 public Rope reverse() { method in class:FlatCharSequenceRope
H A DSubstringRope.java109 public Rope reverse() { method in class:SubstringRope
/ropes-1.1.3/src/org/ahmadsoft/ropes/
H A DRope.java256 public Rope reverse(); method in interface:Rope
259 * Returns a reverse iterator positioned to start at the end of this
260 * rope. A reverse iterator moves backwards instead of forwards through
262 * @return A reverse iterator positioned at the end of this rope.
268 * Returns a reverse iterator positioned to start at the specified index.
269 * A reverse iterator moves backwards instead of forwards through a rope.
271 * @return a reverse iterator positioned to start at the specified index from

Completed in 3 milliseconds