![JAR search and dependency download from the Maven repository](/logo.png)
scala.collection.convert.impl.IndexedStepperBase.scala Maven / Gradle / Ivy
/*
* Scala (https://www.scala-lang.org)
*
* Copyright EPFL and Lightbend, Inc.
*
* Licensed under Apache License 2.0
* (http://www.apache.org/licenses/LICENSE-2.0).
*
* See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*/
package scala.collection.convert
package impl
import java.util.Spliterator
import scala.collection.Stepper.EfficientSplit
/** Abstracts all the generic operations of stepping over an indexable collection */
private[convert] abstract class IndexedStepperBase[Sub >: Null, Semi <: Sub](protected var i0: Int, protected var iN: Int)
extends EfficientSplit {
protected def semiclone(half: Int): Semi
def hasStep: Boolean = i0 < iN
def characteristics: Int = Spliterator.ORDERED + Spliterator.SIZED + Spliterator.SUBSIZED
def estimateSize: Long = iN - i0
def trySplit(): Sub = {
if (iN-1 > i0) {
val half = (i0+iN) >>> 1
val ans = semiclone(half)
i0 = half
ans
}
else null
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy