Scala Standard Library 2.13.1 - scala.collection.mutable.IndexedSeqOps (original) (raw)
trait IndexedSeqOps[A, +CC[_], +C <: AnyRef] extends collection.IndexedSeqOps[A, CC, C] with SeqOps[A, CC, C]
Ordering
- Alphabetic
- By Inheritance
Inherited
- IndexedSeqOps
- SeqOps
- Cloneable
- Cloneable
- IndexedSeqOps
- SeqOps
- IterableOps
- IterableOnceOps
- IterableOnce
- AnyRef
- Any
Implicitly
by iterableOnceExtensionMethods
by any2stringadd
by StringFormat
by Ensuring
by ArrowAssoc
Hide All
Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def apply(i: Int): A
- abstract def coll: C
- abstract def fromSpecific(coll: IterableOnce[A]): C
- abstract def iterableFactory: IterableFactory[CC]
- abstract def length: Int
- abstract def newSpecificBuilder: Builder[A, C]
- abstract def toIterable: collection.Iterable[A]
- abstract def update(idx: Int, elem: A): Unit
Concrete Value Members
- final def !=(arg0: Any): Boolean
- final def ##(): Int
- def +(other: String): String
- final def ++[B >: A](suffix: IterableOnce[B]): CC[B]
- final def ++:[B >: A](prefix: IterableOnce[B]): CC[B]
- final def +:[B >: A](elem: B): CC[B]
- def ->[B](y: B): (IndexedSeqOps[A, CC, C], B)
- final def :+[B >: A](elem: B): CC[B]
- final def :++[B >: A](suffix: IterableOnce[B]): CC[B]
- final def ==(arg0: Any): Boolean
- final def addString(b: StringBuilder): StringBuilder
- final def addString(b: StringBuilder, sep: String): StringBuilder
- def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
- def appended[B >: A](elem: B): CC[B]
- def appendedAll[B >: A](suffix: IterableOnce[B]): CC[B]
- final def asInstanceOf[T0]: T0
- def clone(): C
- def collect[B](pf: PartialFunction[A, B]): CC[B]
- def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
- def combinations(n: Int): Iterator[C]
- final def concat[B >: A](suffix: IterableOnce[B]): CC[B]
- def contains[A1 >: A](elem: A1): Boolean
- def containsSlice[B](that: collection.Seq[B]): Boolean
- def copyToArray[B >: A](xs: Array[B], start: Int, len: Int): Int
- def copyToArray[B >: A](xs: Array[B], start: Int): Int
- def copyToArray[B >: A](xs: Array[B]): Int
- def corresponds[B](that: collection.Seq[B])(p: (A, B) => Boolean): Boolean
- def corresponds[B](that: IterableOnce[B])(p: (A, B) => Boolean): Boolean
- def count(p: (A) => Boolean): Int
- def diff[B >: A](that: collection.Seq[B]): C
- def distinct: C
- def distinctBy[B](f: (A) => B): C
- def drop(n: Int): C
- def dropRight(n: Int): C
- def dropWhile(p: (A) => Boolean): C
- def empty: C
- def endsWith[B >: A](that: collection.Iterable[B]): Boolean
- def ensuring(cond: (IndexedSeqOps[A, CC, C]) => Boolean, msg: => Any): IndexedSeqOps[A, CC, C]
- def ensuring(cond: (IndexedSeqOps[A, CC, C]) => Boolean): IndexedSeqOps[A, CC, C]
- def ensuring(cond: Boolean, msg: => Any): IndexedSeqOps[A, CC, C]
- def ensuring(cond: Boolean): IndexedSeqOps[A, CC, C]
- final def eq(arg0: AnyRef): Boolean
- def equals(arg0: AnyRef): Boolean
- def exists(p: (A) => Boolean): Boolean
- def filter(pred: (A) => Boolean): C
- def filterNot(pred: (A) => Boolean): C
- def finalize(): Unit
- def find(p: (A) => Boolean): Option[A]
- def findLast(p: (A) => Boolean): Option[A]
- def flatMap[B](f: (A) => IterableOnce[B]): CC[B]
- def flatten[B](implicit asIterable: (A) => IterableOnce[B]): CC[B]
- def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
- def foldLeft[B](z: B)(op: (B, A) => B): B
- def foldRight[B](z: B)(op: (A, B) => B): B
- def forall(p: (A) => Boolean): Boolean
- def foreach[U](f: (A) => U): Unit
- def formatted(fmtstr: String): String
- final def getClass(): Class[_ <: AnyRef]
- def groupBy[K](f: (A) => K): immutable.Map[K, C]
- def groupMap[K, B](key: (A) => K)(f: (A) => B): immutable.Map[K, CC[B]]
- def groupMapReduce[K, B](key: (A) => K)(f: (A) => B)(reduce: (B, B) => B): immutable.Map[K, B]
- def grouped(size: Int): Iterator[C]
- def hashCode(): Int
- def head: A
- def headOption: Option[A]
- def indexOf[B >: A](elem: B): Int
- def indexOf[B >: A](elem: B, from: Int): Int
- def indexOfSlice[B >: A](that: collection.Seq[B]): Int
- def indexOfSlice[B >: A](that: collection.Seq[B], from: Int): Int
- def indexWhere(p: (A) => Boolean): Int
- def indexWhere(p: (A) => Boolean, from: Int): Int
- def indices: immutable.Range
- def init: C
- def inits: Iterator[C]
- def intersect[B >: A](that: collection.Seq[B]): C
- def isDefinedAt(idx: Int): Boolean
- def isEmpty: Boolean
- final def isInstanceOf[T0]: Boolean
- def isTraversableAgain: Boolean
- def iterator: Iterator[A]
- def knownSize: Int
- def last: A
- def lastIndexOf[B >: A](elem: B, end: Int = length - 1): Int
- def lastIndexOfSlice[B >: A](that: collection.Seq[B]): Int
- def lastIndexOfSlice[B >: A](that: collection.Seq[B], end: Int): Int
- def lastIndexWhere(p: (A) => Boolean): Int
- def lastIndexWhere(p: (A) => Boolean, end: Int): Int
- def lastOption: Option[A]
- final def lengthCompare(that: collection.Iterable[_]): Int
- final def lengthCompare(len: Int): Int
- final def lengthIs: SizeCompareOps
- def map[B](f: (A) => B): CC[B]
- def mapInPlace(f: (A) => A): IndexedSeqOps.this.type
- def max[B >: A](implicit ord: math.Ordering[B]): A
- def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
- def maxByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
- def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
- def min[B >: A](implicit ord: math.Ordering[B]): A
- def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
- def minByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
- def minOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
- final def mkString: String
- final def mkString(sep: String): String
- final def mkString(start: String, sep: String, end: String): String
- final def ne(arg0: AnyRef): Boolean
- def nonEmpty: Boolean
- final def notify(): Unit
- final def notifyAll(): Unit
- def occCounts[B](sq: collection.Seq[B]): Map[B, Int]
- def padTo[B >: A](len: Int, elem: B): CC[B]
- def partition(p: (A) => Boolean): (C, C)
- def partitionMap[A1, A2](f: (A) => Either[A1, A2]): (CC[A1], CC[A2])
- def patch[B >: A](from: Int, other: IterableOnce[B], replaced: Int): CC[B]
- def permutations: Iterator[C]
- def prepended[B >: A](elem: B): CC[B]
- def prependedAll[B >: A](prefix: IterableOnce[B]): CC[B]
- def product[B >: A](implicit num: math.Numeric[B]): B
- def reduce[B >: A](op: (B, B) => B): B
- def reduceLeft[B >: A](op: (B, A) => B): B
- def reduceLeftOption[B >: A](op: (B, A) => B): Option[B]
- def reduceOption[B >: A](op: (B, B) => B): Option[B]
- def reduceRight[B >: A](op: (A, B) => B): B
- def reduceRightOption[B >: A](op: (A, B) => B): Option[B]
- def reverse: C
- def reverseIterator: Iterator[A]
- def reversed: collection.Iterable[A]
- def sameElements[B >: A](that: IterableOnce[B]): Boolean
- def scan[B >: A](z: B)(op: (B, B) => B): CC[B]
- def scanLeft[B](z: B)(op: (B, A) => B): CC[B]
- def scanRight[B](z: B)(op: (A, B) => B): CC[B]
- def search[B >: A](elem: B, from: Int, to: Int)(implicit ord: math.Ordering[B]): SearchResult
- def search[B >: A](elem: B)(implicit ord: math.Ordering[B]): SearchResult
- def segmentLength(p: (A) => Boolean, from: Int): Int
- final def segmentLength(p: (A) => Boolean): Int
- final def size: Int
- final def sizeCompare(that: collection.Iterable[_]): Int
- final def sizeCompare(otherSize: Int): Int
- final def sizeIs: SizeCompareOps
- def slice(from: Int, until: Int): C
- def sliding(size: Int, step: Int): Iterator[C]
- def sliding(size: Int): Iterator[C]
- def sortBy[B](f: (A) => B)(implicit ord: Ordering[B]): C
- def sortInPlace[B >: A]()(implicit ord: Ordering[B]): IndexedSeqOps.this.type
- def sortInPlaceBy[B](f: (A) => B)(implicit ord: Ordering[B]): IndexedSeqOps.this.type
- def sortInPlaceWith(lt: (A, A) => Boolean): IndexedSeqOps.this.type
- def sortWith(lt: (A, A) => Boolean): C
- def sorted[B >: A](implicit ord: Ordering[B]): C
- def span(p: (A) => Boolean): (C, C)
- def splitAt(n: Int): (C, C)
- def startsWith[B >: A](that: IterableOnce[B], offset: Int = 0): Boolean
- def stepper[S <: Stepper[_]](implicit shape: StepperShape[A, S]): S with EfficientSplit
- def sum[B >: A](implicit num: math.Numeric[B]): B
- final def synchronized[T0](arg0: => T0): T0
- def tail: C
- def tails: Iterator[C]
- def take(n: Int): C
- def takeRight(n: Int): C
- def takeWhile(p: (A) => Boolean): C
- def tapEach[U](f: (A) => U): C
- def to[C1](factory: Factory[A, C1]): C1
- def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
- final def toBuffer[B >: A]: Buffer[B]
- def toIndexedSeq: immutable.IndexedSeq[A]
- def toList: immutable.List[A]
- def toMap[K, V](implicit ev: <:<[A, (K, V)]): immutable.Map[K, V]
- def toSeq: immutable.Seq[A]
- def toSet[B >: A]: immutable.Set[B]
- def toString(): String
- def toVector: immutable.Vector[A]
- def transpose[B](implicit asIterable: (A) => collection.Iterable[B]): CC[CC[B]]
- def unzip[A1, A2](implicit asPair: (A) => (A1, A2)): (CC[A1], CC[A2])
- def unzip3[A1, A2, A3](implicit asTriple: (A) => (A1, A2, A3)): (CC[A1], CC[A2], CC[A3])
- def updated[B >: A](index: Int, elem: B): CC[B]
- def view: IndexedSeqView[A]
- final def wait(): Unit
- final def wait(arg0: Long, arg1: Int): Unit
- final def wait(arg0: Long): Unit
- def withFilter(p: (A) => Boolean): WithFilter[A, CC]
- def zip[B](that: IterableOnce[B]): CC[(A, B)]
- def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): CC[(A1, B)]
- def zipWithIndex: CC[(A, Int)]
Deprecated Value Members
- def /:[B](z: B)(op: (B, A) => B): B
- final def /:[B](z: B)(op: (B, A) => B): B
- def :\[B](z: B)(op: (A, B) => B): B
- final def :\[B](z: B)(op: (A, B) => B): B
- def aggregate[B](z: => B)(seqop: (B, A) => B, combop: (B, B) => B): B
- def collectFirst[B](f: PartialFunction[A, B]): Option[B]
- def companion: IterableFactory[CC]
- def copyToBuffer(dest: Buffer[A]): Unit
- final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
- def count(f: (A) => Boolean): Int
- def exists(f: (A) => Boolean): Boolean
- def filter(f: (A) => Boolean): Iterator[A]
- def find(p: (A) => Boolean): Option[A]
- def flatMap[B](f: (A) => IterableOnce[B]): IterableOnce[B]
- def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
- def foldLeft[B](z: B)(op: (B, A) => B): B
- def foldRight[B](z: B)(op: (A, B) => B): B
- def forall(f: (A) => Boolean): Boolean
- def foreach[U](f: (A) => U): Unit
- def hasDefiniteSize: Boolean
- def isEmpty: Boolean
- def map[B](f: (A) => B): IterableOnce[B]
- def max(implicit ord: math.Ordering[A]): A
- def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
- def min(implicit ord: math.Ordering[A]): A
- def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
- def mkString: String
- def mkString(sep: String): String
- def mkString(start: String, sep: String, end: String): String
- def nonEmpty: Boolean
- final def prefixLength(p: (A) => Boolean): Int
- def product(implicit num: math.Numeric[A]): A
- def reduce(f: (A, A) => A): A
- def reduceLeft(f: (A, A) => A): A
- def reduceLeftOption(f: (A, A) => A): Option[A]
- def reduceOption(f: (A, A) => A): Option[A]
- def reduceRight(f: (A, A) => A): A
- def reduceRightOption(f: (A, A) => A): Option[A]
- final def repr: C
- def reverseMap[B](f: (A) => B): CC[B]
- def sameElements[B >: A](that: IterableOnce[B]): Boolean
- def size: Int
- def sum(implicit num: math.Numeric[A]): A
- def to[C1](factory: Factory[A, C1]): C1
- def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
- def toBuffer[B >: A]: Buffer[B]
- def toIndexedSeq: collection.IndexedSeq[A]
- final def toIterable: collection.Iterable[A]
- def toIterator: Iterator[A]
- final def toIterator: Iterator[A]
- def toList: immutable.List[A]
- def toMap[K, V](implicit ev: <:<[A, (K, V)]): immutable.Map[K, V]
- def toSeq: immutable.Seq[A]
- def toSet[B >: A]: immutable.Set[B]
- def toStream: immutable.Stream[A]
- final def toStream: immutable.Stream[A]
- final def toTraversable: collection.Traversable[A]
- final def toTraversable: collection.Traversable[A]
- def toVector: immutable.Vector[A]
- final def transform(f: (A) => A): IndexedSeqOps.this.type
- final def union[B >: A](that: collection.Seq[B]): CC[B]
- def view(from: Int, until: Int): IndexedSeqView[A]
- def withFilter(f: (A) => Boolean): Iterator[A]
- def →[B](y: B): (IndexedSeqOps[A, CC, C], B)