scala.collection.mutable.IndexedSeqView.Reversed

DroppedWhile

trait DroppedWhile extends Transformed[A] with DroppedWhile

definition classes: IndexedSeqViewIndexedSeqViewLikeSeqViewLikeIterableViewLikeTraversableViewLike

Inherits

  1. DroppedWhile
  2. DroppedWhile
  3. DroppedWhile
  4. DroppedWhile
  5. Transformed
  6. Transformed
  7. Transformed
  8. Transformed
  9. Transformed
  10. IndexedSeqView
  11. IndexedSeqView
  12. IndexedSeqViewLike
  13. SeqView
  14. SeqViewLike
  15. IterableView
  16. IterableViewLike
  17. TraversableView
  18. TraversableViewLike
  19. IndexedSeq
  20. IndexedSeqLike
  21. Seq
  22. SeqLike
  23. Iterable
  24. IterableLike
  25. Equals
  26. Traversable
  27. GenericTraversableTemplate
  28. TraversableLike
  29. HasNewBuilder
  30. PartialFunction
  31. Function1
  32. AnyRef
  33. Any

Type Members

  1. trait Appended[B >: A] extends Transformed[B] with Appended[B]

  2. trait DroppedWhile extends Transformed[A] with DroppedWhile

  3. trait Filtered extends Transformed[A] with Filtered

  4. trait FlatMapped[B] extends Transformed[B] with FlatMapped[B]

  5. trait Mapped[B] extends Transformed[B] with Mapped[B]

  6. trait Patched[B >: A] extends Transformed[B] with Patched[B]

  7. trait Reversed extends Transformed[A] with Reversed

  8. trait Sliced extends Transformed[A] with Sliced

    pre: from >= 0

  9. trait TakenWhile extends Transformed[A] with TakenWhile

  10. trait Transformed[B] extends IndexedSeqView[B, Coll] with Transformed[B]

  11. class WithFilter extends AnyRef

    A class supporting filtered operations

  12. trait Zipped[B] extends Transformed[(A, B)]

  13. trait ZippedAll[A1 >: A, B] extends Transformed[(A1, B)]

Value Members

  1. def ++[B >: A, That](that: Iterator[B])(bf: CanBuildFrom[IndexedSeqView[A, Coll], B, That]): That

    Concatenates this sequence with the elements of an iterator

  2. def ++[B >: A, That](that: Traversable[B])(bf: CanBuildFrom[IndexedSeqView[A, Coll], B, That]): That

    Concatenates this sequence with the elements of a traversable collection

  3. def +:[B >: A, That](elem: B)(bf: CanBuildFrom[IndexedSeqView[A, Coll], B, That]): That

    Prepends an element to this sequence

  4. def /:[B](z: B)(op: (B, A) ⇒ B): B

    Applies a binary operator to a start value and all elements of this sequence, going left to right

  5. def :+[B >: A, That](elem: B)(bf: CanBuildFrom[IndexedSeqView[A, Coll], B, That]): That

    Appends an element to this sequence

  6. def :\[B](z: B)(op: (A, B) ⇒ B): B

    Applies a binary operator to all elements of this sequence and a start value, going right to left

  7. def addString(b: StringBuilder): StringBuilder

    Appends all elements of this sequence to a string builder

  8. def addString(b: StringBuilder, sep: String): StringBuilder

    Appends all elements of this sequence to a string builder using a separator string

  9. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Appends all elements of this sequence to a string builder using start, end, and separator strings

  10. def andThen[C](k: (A) ⇒ C): PartialFunction[Int, C]

    Composes this partial function with a transformation function that gets applied to results of this partial function

  11. def apply(idx: Int): A

    Selects an element by its index in the sequence

  12. def canEqual(that: Any): Boolean

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind

  13. def companion: GenericCompanion[IndexedSeq[A][A]]

    The factory companion object that builds instances of class Seq

  14. def compose[A](g: (A) ⇒ Int): (A) ⇒ A

    (f compose g)(x) == f(g(x))

  15. def contains(elem: Any): Boolean

    Tests whether this sequence contains a given value as an element

  16. def containsSlice[B](that: Seq[B]): Boolean

    Tests whether this sequence contains a given sequence as a slice

  17. def copyToArray[B >: A](xs: Array[B], start: Int, len: Int): Unit

    Copies elements of this sequence to an array

  18. def copyToArray[B >: A](xs: Array[B]): Unit

    Copies elements of this sequence to an array

  19. def copyToArray[B >: A](xs: Array[B], start: Int): Unit

    Copies elements of this sequence to an array

  20. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Copies all elements of this sequence to a buffer

  21. def corresponds[B](that: Seq[B])(p: (A, B) ⇒ Boolean): Boolean

    Tests whether every element of this sequence relates to the corresponding element of another sequence by satisfying a test predicate

  22. def count(p: (A) ⇒ Boolean): Int

    Counts the number of elements in the sequence which satisfy a predicate

  23. def diff[B >: A, That](that: Seq[B]): IndexedSeqView[A, Coll]

    Computes the multiset difference between this sequence and another sequence

  24. def drop(n: Int): IndexedSeqView[A, Coll]

    Selects all elements except first n ones

  25. def dropRight(n: Int): IndexedSeqView[A, Coll]

    Selects all elements except first n ones

  26. def dropWhile(p: (A) ⇒ Boolean): IndexedSeqView[A, Coll]

    Drops longest prefix of elements that satisfy a predicate

  27. def elements: Iterator[A]

  28. def endsWith[B](that: Seq[B]): Boolean

    Tests whether this sequence ends with the given sequence

  29. def equals(that: Any): Boolean

    The equality method defined in AnyRef

  30. def equalsWith[B](that: Seq[B])(f: (A, B) ⇒ Boolean): Boolean

    Tests whether every element of this sequence relates to the corresponding element of another sequence by satisfying a test predicate

  31. def exists(p: (A) ⇒ Boolean): Boolean

    Tests whether a predicate holds for some of the elements of this sequence

  32. def filter(p: (A) ⇒ Boolean): IndexedSeqView[A, Coll]

    Selects all elements of this sequence which satisfy a predicate

  33. def filterNot(p: (A) ⇒ Boolean): IndexedSeqView[A, Coll]

    Selects all elements of this sequence which do not satisfy a predicate

  34. def find(p: (A) ⇒ Boolean): Option[A]

    Finds the first element of the sequence satisfying a predicate, if any

  35. def findIndexOf(p: (A) ⇒ Boolean): Int

    Returns index of the first element satisying a predicate, or -1

  36. def findLastIndexOf(p: (A) ⇒ Boolean): Int

    Returns index of the last element satisying a predicate, or -1

  37. def first: A

  38. def firstOption: Option[A]

    None if iterable is empty

  39. def flatMap[B, That](f: (A) ⇒ Traversable[B])(bf: CanBuildFrom[IndexedSeqView[A, Coll], B, That]): That

    Builds a new collection by applying a function to all elements of this sequence and concatenating the results

  40. def flatten[B](asTraversable: (A) ⇒ Traversable[B]): IndexedSeq[B]

    Converts this sequence of traversable collections into a sequence in which all element collections are concatenated

  41. def foldLeft[B](z: B)(op: (B, A) ⇒ B): B

    Applies a binary operator to a start value and all elements of this sequence, going left to right

  42. def foldRight[B](z: B)(op: (A, B) ⇒ B): B

    Applies a binary operator to all elements of this sequence and a start value, going right to left

  43. def forall(p: (A) ⇒ Boolean): Boolean

    Tests whether a predicate holds for all elements of this sequence

  44. def force[B >: A, That](bf: CanBuildFrom[Coll, B, That]): That

  45. def foreach[U](f: (A) ⇒ U): Unit

    Applies a function f to all elements of this sequence

  46. def genericBuilder[B]: Builder[B, IndexedSeq[B]]

    The generic builder that builds instances of Seq at arbitrary element types

  47. def groupBy[K](f: (A) ⇒ K): Map[K, IndexedSeqView[A, Coll]]

    Partitions this sequence into a map of sequences according to some discriminator function

  48. def hasDefiniteSize: Boolean

    Tests whether this sequence is known to have a finite size

  49. def hashCode(): Int

    Hashcodes for Seq produce a value from the hashcodes of all the elements of the sequence

  50. def head: A

    Selects the first element of this sequence

  51. def headOption: Option[A]

    Optionally selects the first element

  52. def indexOf[B >: A](elem: B, from: Int): Int

    Finds index of first occurrence of some value in this sequence after or at some start index

  53. def indexOf[B >: A](elem: B): Int

    Finds index of first occurrence of some value in this sequence

  54. def indexOfSlice[B >: A](that: Seq[B], from: Int): Int

    Finds first index after or at a start index where this sequence contains a given sequence as a slice

  55. def indexOfSlice[B >: A](that: Seq[B]): Int

    Finds first index where this sequence contains a given sequence as a slice

  56. def indexWhere(p: (A) ⇒ Boolean, from: Int): Int

    Finds index of the first element satisfying some predicate after or at some start index

  57. def indexWhere(p: (A) ⇒ Boolean): Int

    Finds index of first element satisfying some predicate

  58. def indices: Range

    Produces the range of all indices of this sequence

  59. def init: IndexedSeqView[A, Coll]

    Selects all elements except the last

  60. def intersect[B >: A, That](that: Seq[B]): IndexedSeqView[A, Coll]

    Computes the multiset intersection between this sequence and another sequence

  61. def isDefinedAt(idx: Int): Boolean

    Tests whether this sequence contains given index

  62. def isEmpty: Boolean

    Tests whether this sequence is empty

  63. def iterator: Iterator[A]

    Creates a new iterator over all elements contained in this iterable object

  64. def last: A

    Selects the last element

  65. def lastIndexOf[B >: A](elem: B, end: Int): Int

    Finds index of last occurrence of some value in this sequence before or at a given end index

  66. def lastIndexOf[B >: A](elem: B): Int

    Finds index of last occurrence of some value in this sequence

  67. def lastIndexOfSlice[B >: A](that: Seq[B], end: Int): Int

    Finds last index before or at a given end index where this sequence contains a given sequence as a slice

  68. def lastIndexOfSlice[B >: A](that: Seq[B]): Int

    Finds last index where this sequence contains a given sequence as a slice

  69. def lastIndexWhere(p: (A) ⇒ Boolean, end: Int): Int

    Finds index of last element satisfying some predicate before or at given end index

  70. def lastIndexWhere(p: (A) ⇒ Boolean): Int

    Finds index of last element satisfying some predicate

  71. def lastOption: Option[A]

    Optionally selects the last element

  72. def length: Int

    The length of the sequence

  73. def lengthCompare(len: Int): Int

    Compares the length of this sequence to a test value

  74. def lift: (Int) ⇒ Option[A]

    Turns this partial function into an plain function returning an Option result

  75. def map[B, That](f: (A) ⇒ B)(bf: CanBuildFrom[IndexedSeqView[A, Coll], B, That]): That

    Builds a new collection by applying a function to all elements of this sequence

  76. def max[B >: A](cmp: Ordering[B]): A

    Finds the largest element

  77. def min[B >: A](cmp: Ordering[B]): A

    Finds the smallest element

  78. def mkString: String

    Displays all elements of this sequence in a string

  79. def mkString(sep: String): String

    Displays all elements of this sequence in a string using a separator string

  80. def mkString(start: String, sep: String, end: String): String

    Displays all elements of this sequence in a string using start, end, and separator strings

  81. def nonEmpty: Boolean

    Tests whether the sequence is not empty

  82. def orElse[A1 <: Int, B1 >: A](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Composes this partial function with a fallback partial function which gets applied where this partial function is not defined

  83. def padTo[B >: A, That](len: Int, elem: B)(bf: CanBuildFrom[IndexedSeqView[A, Coll], B, That]): That

    Appends an element value to this sequence until a given target length is reached

  84. def partialMap[B, That](pf: PartialFunction[A, B])(bf: CanBuildFrom[IndexedSeqView[A, Coll], B, That]): That

    Builds a new collection by applying a partial function to all elements of this sequence on which the function is defined

  85. def partition(p: (A) ⇒ Boolean): (IndexedSeqView[A, Coll], IndexedSeqView[A, Coll])

    Partitions this sequence in two sequences according to a predicate

  86. def patch[B >: A, That](from: Int, patch: Seq[B], replaced: Int)(bf: CanBuildFrom[IndexedSeqView[A, Coll], B, That]): That

    Produces a new sequence where a slice of elements in this sequence is replaced by another sequence

  87. def prefixLength(p: (A) ⇒ Boolean): Int

    Returns the length of the longest prefix whose elements all satisfy some preficate

  88. def product[B >: A](num: Numeric[B]): B

    Multiplies up the elements of this collection

  89. def projection: SeqView[A, IndexedSeqView[A, Coll]]

    returns a projection that can be used to call non-strict filter, map, and flatMap methods that build projections of the collection

  90. def reduceLeft[B >: A](op: (B, A) ⇒ B): B

    Applies a binary operator to all elements of this sequence, going left to right

  91. def reduceLeftOption[B >: A](op: (B, A) ⇒ B): Option[B]

    Optionally applies a binary operator to all elements of this sequence, going left to right

  92. def reduceRight[B >: A](op: (A, B) ⇒ B): B

    Applies a binary operator to all elements of this sequence, going right to left

  93. def reduceRightOption[B >: A](op: (A, B) ⇒ B): Option[B]

    Optionally applies a binary operator to all elements of this sequence, going right to left

  94. def removeDuplicates: IndexedSeqView[A, Coll]

    Builds a new sequence from this sequence without any duplicate elements

  95. def repr: IndexedSeqView[A, Coll]

    The collection of type sequence underlying this TraversableLike object

  96. def reverse: IndexedSeqView[A, Coll]

    Returns new sequence wih elements in reversed order

  97. def reverseIterator: Iterator[A]

    An iterator yielding elements in reversed order

  98. def reverseMap[B, That](f: (A) ⇒ B)(bf: CanBuildFrom[IndexedSeqView[A, Coll], B, That]): That

    Builds a new collection by applying a function to all elements of this sequence and collecting the results in reversed order

  99. def reversedElements: Iterator[A]

  100. def sameElements[B >: A](that: Iterable[B]): Boolean

    Checks if the other iterable collection contains the same elements in the same order as this sequence

  101. def segmentLength(p: (A) ⇒ Boolean, from: Int): Int

    Computes length of longest segment whose elements all satisfy some preficate

  102. def size: Int

    The size of this sequence, equivalent to length

  103. def slice(from: Int, until: Int): IndexedSeqView[A, Coll]

    Selects an interval of elements

  104. def sortBy[B](f: (A) ⇒ B)(ord: Ordering[B]): IndexedSeqView[A, Coll]

    Sorts this Seq according to the Ordering which results from transforming an implicitly given Ordering with a transformation function

  105. def sortWith[B >: A](ord: Ordering[B]): IndexedSeqView[A, Coll]

    Sorts this sequence according to an Ordering

  106. def sortWith(lt: (A, A) ⇒ Boolean): IndexedSeqView[A, Coll]

    Sorts this sequence according to a comparison function

  107. def span(p: (A) ⇒ Boolean): (IndexedSeqView[A, Coll], IndexedSeqView[A, Coll])

    Spits this sequence into a prefix/suffix pair according to a predicate

  108. def splitAt(n: Int): (IndexedSeqView[A, Coll], IndexedSeqView[A, Coll])

    Splits this sequence into two at a given position

  109. def startsWith[B](that: Seq[B], offset: Int): Boolean

    Tests whether this sequence contains the given sequence at a given index

  110. def startsWith[B](that: Seq[B]): Boolean

    Tests whether this sequence starts with the given sequence

  111. def stringPrefix: String

    Defines the prefix of this object's toString representation

  112. def sum[B >: A](num: Numeric[B]): B

    Sums up the elements of this collection

  113. def tail: IndexedSeqView[A, Coll]

    Selects all elements except the first

  114. def take(n: Int): IndexedSeqView[A, Coll]

    Selects first n elements

  115. def takeRight(n: Int): IndexedSeqView[A, Coll]

    Selects last n elements

  116. def takeWhile(p: (A) ⇒ Boolean): IndexedSeqView[A, Coll]

    Takes longest prefix of elements that satisfy a predicate

  117. def toArray[B >: A](arg0: ClassManifest[B]): Array[B]

    Converts this sequence to an array

  118. def toIndexedSeq[B >: A]: IndexedSeq[B]

    Converts this sequence to an indexed sequence

  119. def toIterable: Iterable[A]

    Converts this sequence to an iterable collection

  120. def toList: List[A]

    Converts this sequence to a list

  121. def toSeq: Seq[A]

    Converts this sequence to a sequence

  122. def toSet[B >: A]: Set[B]

    Converts this sequence to a set

  123. def toStream: Stream[A]

    Converts this sequence to a stream

  124. def toString(): String

    Converts this sequence to a string

  125. def transpose[B](asTraversable: (A) ⇒ Traversable[B]): IndexedSeq[IndexedSeq[B]]

    Transposes this sequence of traversable collections into

  126. var underlying: Coll

  127. def union[B >: A, That](that: Seq[B])(bf: CanBuildFrom[IndexedSeqView[A, Coll], B, That]): That

    Produces a new sequence which contains all elements of this sequence and also all elements of a given sequence

  128. def unzip[A1, A2](asPair: (A) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])

    Converts this sequence of pairs into two collections of the first and second halfs of each pair

  129. def update(idx: Int, elem: A): Unit

  130. def updated[B >: A, That](index: Int, elem: B)(bf: CanBuildFrom[IndexedSeqView[A, Coll], B, That]): That

    A copy of this sequence with one single replaced element

  131. def view(from: Int, until: Int): IndexedSeqView[A, IndexedSeqView[A, Coll]]

    Creates a non-strict view of a slice of this sequence

  132. def view: IndexedSeqView[A, IndexedSeqView[A, Coll]]

    Creates a non-strict view of this sequence

  133. def withFilter(p: (A) ⇒ Boolean): WithFilter

    Creates a non-strict filter of this sequence

  134. def zip[A1 >: A, B, That](that: Iterable[B])(bf: CanBuildFrom[IndexedSeqView[A, Coll], (A1, B), That]): That

    Returns a sequence formed from this sequence and another iterable collection by combining corresponding elements in pairs

  135. def zipAll[B, A1 >: A, That](that: Iterable[B], thisElem: A1, thatElem: B)(bf: CanBuildFrom[IndexedSeqView[A, Coll], (A1, B), That]): That

    Returns a sequence formed from this sequence and another iterable collection by combining corresponding elements in pairs

  136. def zipWithIndex[A1 >: A, That](bf: CanBuildFrom[IndexedSeqView[A, Coll], (A1, Int), That]): That

    Zips this sequence with its indices