summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2015-04-22 15:26:09 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2015-04-22 15:26:09 -0700
commita231f7dea1cff409c62902025f6d1ad76c71bcc5 (patch)
tree0baca7a5bf7257a0f239682e7c2dcdd7cc7c71c0 /src
parent3b3522888d5be8810bc66d5ca2972052d16fc0ff (diff)
parent065388637eb07d90a32f22a2a00de93bbb934b34 (diff)
downloadscala-a231f7dea1cff409c62902025f6d1ad76c71bcc5.tar.gz
scala-a231f7dea1cff409c62902025f6d1ad76c71bcc5.tar.bz2
scala-a231f7dea1cff409c62902025f6d1ad76c71bcc5.zip
Merge pull request #4429 from ruippeixotog/issue/8552
SI-8627 Two-argument indexOf does not work for Iterator
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/collection/Iterator.scala39
1 files changed, 37 insertions, 2 deletions
diff --git a/src/library/scala/collection/Iterator.scala b/src/library/scala/collection/Iterator.scala
index 34a025e5b8..5c4b15ad0f 100644
--- a/src/library/scala/collection/Iterator.scala
+++ b/src/library/scala/collection/Iterator.scala
@@ -852,8 +852,25 @@ trait Iterator[+A] extends TraversableOnce[A] {
* or -1 if such an element does not exist until the end of the iterator is reached.
* @note Reuse: $consumesIterator
*/
- def indexWhere(p: A => Boolean): Int = {
+ def indexWhere(p: A => Boolean): Int = indexWhere(p, 0)
+
+ /** Returns the index of the first produced value satisfying a predicate, or -1, after or at
+ * some start index.
+ * $mayNotTerminateInf
+ *
+ * @param p the predicate to test values
+ * @param from the start index
+ * @return the index `>= from` of the first produced value satisfying `p`,
+ * or -1 if such an element does not exist until the end of the iterator is reached.
+ * @note Reuse: $consumesIterator
+ */
+ def indexWhere(p: A => Boolean, from: Int): Int = {
var i = 0
+ while (i < from && hasNext) {
+ next()
+ i += 1
+ }
+
var found = false
while (!found && hasNext) {
if (p(next())) {
@@ -874,8 +891,26 @@ trait Iterator[+A] extends TraversableOnce[A] {
* or -1 if such an element does not exist until the end of the iterator is reached.
* @note Reuse: $consumesIterator
*/
- def indexOf[B >: A](elem: B): Int = {
+ def indexOf[B >: A](elem: B): Int = indexOf(elem, 0)
+
+ /** Returns the index of the first occurrence of the specified object in this iterable object
+ * after or at some start index.
+ * $mayNotTerminateInf
+ *
+ * @param elem element to search for.
+ * @param from the start index
+ * @return the index `>= from` of the first occurrence of `elem` in the values produced by this
+ * iterator, or -1 if such an element does not exist until the end of the iterator is
+ * reached.
+ * @note Reuse: $consumesIterator
+ */
+ def indexOf[B >: A](elem: B, from: Int): Int = {
var i = 0
+ while (i < from && hasNext) {
+ next()
+ i += 1
+ }
+
var found = false
while (!found && hasNext) {
if (next() == elem) {