NodeBuffer

scala.xml.NodeBuffer
class NodeBuffer extends ArrayBuffer[Node]

This class acts as a Buffer for nodes. If it is used as a sequence of nodes Seq[Node], it must be ensured that no updates occur after that point, because scala.xml.Node is assumed to be immutable.

Despite this being a sequence, don't use it as key in a hashtable. Calling the hashcode function will result in a runtime error.

Attributes

Graph
Supertypes

Members list

Value members

Concrete methods

def &+(o: Any): NodeBuffer

Append given object to this buffer, returns reference on this NodeBuffer for convenience. Some rules apply:

Append given object to this buffer, returns reference on this NodeBuffer for convenience. Some rules apply:

  • If argument o is '''null''', it is ignored.
  • If it is an Iterator or Iterable, its elements will be added.
  • If o is a node, it is added as it is.
  • If it is anything else, it gets wrapped in an scala.xml.Atom.

Value parameters

o

converts to an xml node and adds to this node buffer

Attributes

Returns

this nodebuffer

Inherited methods

final def ++[B >: Node](suffix: IterableOnce[B]): CC[B]

Attributes

Inherited from:
IterableOps
final override def ++:[B >: Node](prefix: IterableOnce[B]): CC[B]

Attributes

Definition Classes
Inherited from:
SeqOps
final def ++=(xs: IterableOnce[Node]): Growable.this.type

Attributes

Inherited from:
Growable
final def ++=:(elems: IterableOnce[Node]): Buffer.this.type

Attributes

Inherited from:
Buffer
final def +:[B >: Node](elem: B): CC[B]

Attributes

Inherited from:
SeqOps
final def +=(elem: Node): Growable.this.type

Attributes

Inherited from:
Growable
final def +=:(elem: Node): Buffer.this.type

Attributes

Inherited from:
Buffer
final def --=(xs: IterableOnce[Node]): Shrinkable.this.type

Attributes

Inherited from:
Shrinkable
final def -=(elem: Node): Shrinkable.this.type

Attributes

Inherited from:
Shrinkable
final def :+[B >: Node](elem: B): CC[B]

Attributes

Inherited from:
SeqOps
final def :++[B >: Node](suffix: IterableOnce[B]): CC[B]

Attributes

Inherited from:
SeqOps
override def addAll(elems: IterableOnce[Node]): ArrayBuffer.this.type

Attributes

Definition Classes
Inherited from:
ArrayBuffer
def addOne(elem: Node): ArrayBuffer.this.type

Attributes

Inherited from:
ArrayBuffer

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
PartialFunction
override def andThen[C](k: Node => C): PartialFunction[A, C]

Attributes

Definition Classes
Inherited from:
PartialFunction
final def append(elem: Node): Buffer.this.type

Attributes

Inherited from:
Buffer
final def appendAll(xs: IterableOnce[Node]): Buffer.this.type

Attributes

Inherited from:
Buffer
override def appended[B >: Node](elem: B): CC[B]

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps
override def appendedAll[B >: Node](suffix: IterableOnce[B]): CC[B]

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps
def apply(n: Int): A

Attributes

Inherited from:
ArrayBuffer
def applyOrElse[A1 <: Int, B1 >: Node](x: A1, default: A1 => B1): B1

Attributes

Inherited from:
PartialFunction
def canEqual(that: Any): Boolean

Attributes

Inherited from:
Seq
override def className: String

Attributes

Definition Classes
ScalaVersionSpecificNodeBuffer
Inherited from:
ScalaVersionSpecificNodeBuffer (hidden)
def clear(): Unit

Attributes

Inherited from:
ArrayBuffer
def clearAndShrink(size: Int): ArrayBuffer.this.type

Attributes

Inherited from:
ArrayBuffer
override def clone(): C

Create a copy of the receiver object.

Create a copy of the receiver object.

The default implementation of the clone method is platform dependent.

Attributes

Returns

a copy of the receiver object.

Note

not specified by SLS as a member of AnyRef

Definition Classes
Inherited from:
SeqOps
override def collect[B](pf: PartialFunction[Node, B]): CC[B]

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
PartialFunction
def compose[A](g: A => Int): A => R

Attributes

Inherited from:
Function1
final override def concat[B >: Node](suffix: IterableOnce[B]): CC[B]

Attributes

Definition Classes
Inherited from:
SeqOps
def contains[A1 >: Node](elem: A1): Boolean

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps
override def copyToArray[B >: Node](xs: Array[B], start: Int, len: Int): Int

Attributes

Definition Classes
Inherited from:
ArrayBuffer
def copyToArray[B >: Node](xs: Array[B], start: Int): Int

Attributes

Inherited from:
IterableOnceOps
def copyToArray[B >: Node](xs: Array[B]): Int

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
IterableOnceOps
def corresponds[B](that: Seq[B])(p: (Node, B) => Boolean): Boolean

Attributes

Inherited from:
SeqOps
def count(p: Node => Boolean): Int

Attributes

Inherited from:
IterableOnceOps
override def diff[B >: Node](that: Seq[B]): C

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps
def distinct: C

Attributes

Inherited from:
SeqOps
override def distinctBy[B](f: Node => B): C

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps
override def drop(n: Int): C

Attributes

Definition Classes
Inherited from:
IndexedSeqOps
def dropInPlace(n: Int): Buffer.this.type

Attributes

Inherited from:
Buffer
override def dropRight(n: Int): C

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
def dropRightInPlace(n: Int): Buffer.this.type

Attributes

Inherited from:
Buffer
def dropWhile(p: Node => Boolean): C

Attributes

Inherited from:
IterableOps
def dropWhileInPlace(p: Node => Boolean): Buffer.this.type

Attributes

Inherited from:
Buffer

Attributes

Inherited from:
PartialFunction
override def empty: CC[A]

Attributes

Definition Classes
Inherited from:
IterableFactoryDefaults

Attributes

Inherited from:
SeqOps
override def equals(o: Any): Boolean

Compares the receiver object (this) with the argument object (that) for equivalence.

Compares the receiver object (this) with the argument object (that) for equivalence.

Any implementation of this method should be an equivalence relation:

  • It is reflexive: for any instance x of type Any, x.equals(x) should return true.
  • It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true.
  • It is transitive: for any instances x, y, and z of type Any if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is usually necessary to override hashCode to ensure that objects which are "equal" (o1.equals(o2) returns true) hash to the same scala.Int. (o1.hashCode.equals(o2.hashCode)).

Value parameters

that

the object to compare against this object for equality.

Attributes

Returns

true if the receiver object is equivalent to the argument; false otherwise.

Definition Classes
Seq -> Equals -> Any
Inherited from:
Seq

Attributes

Inherited from:
IterableOnceOps
override def filter(pred: Node => Boolean): C

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
def filterInPlace(p: Node => Boolean): IndexedBuffer.this.type

Attributes

Inherited from:
IndexedBuffer
override def filterNot(pred: Node => Boolean): C

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
def find(p: Node => Boolean): Option[A]

Attributes

Inherited from:
IterableOnceOps
def findLast(p: Node => Boolean): Option[A]

Attributes

Inherited from:
SeqOps
override def flatMap[B](f: Node => IterableOnce[B]): CC[B]

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps

Attributes

Inherited from:
IndexedBuffer
override def flatten[B](implicit toIterableOnce: Node => IterableOnce[B]): CC[B]

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
def fold[A1 >: Node](z: A1)(op: (A1, A1) => A1): A1

Attributes

Inherited from:
IterableOnceOps
override def foldLeft[B](z: B)(op: (B, Node) => B): B

Attributes

Definition Classes
Inherited from:
ArrayBuffer
override def foldRight[B](z: B)(op: (Node, B) => B): B

Attributes

Definition Classes
Inherited from:
ArrayBuffer

Attributes

Inherited from:
IterableOnceOps
def foreach[U](f: Node => U): Unit

Attributes

Inherited from:
IterableOnceOps
protected def fromSpecific(coll: IterableOnce[Node]): CC[A]

Attributes

Inherited from:
IterableFactoryDefaults
def groupBy[K](f: Node => K): Map[K, C]

Attributes

Inherited from:
IterableOps
def groupMap[K, B](key: Node => K)(f: Node => B): Map[K, CC[B]]

Attributes

Inherited from:
IterableOps
def groupMapReduce[K, B](key: Node => K)(f: Node => B)(reduce: (B, B) => B): Map[K, B]

Attributes

Inherited from:
IterableOps
def grouped(size: Int): Iterator[C]

Attributes

Inherited from:
IterableOps
override def hashCode(): Int

Calculate a hash code value for the object.

Calculate a hash code value for the object.

The default hashing algorithm is platform dependent.

Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

Attributes

Returns

the hash code value for this object.

Definition Classes
Seq -> Any
Inherited from:
Seq
override def head: A

Attributes

Definition Classes
Inherited from:
IndexedSeqOps
override def headOption: Option[A]

Attributes

Definition Classes
Inherited from:
IndexedSeqOps
def indexOf[B >: Node](elem: B): Int

Attributes

Inherited from:
SeqOps
def indexOf[B >: Node](elem: B, from: Int): Int

Attributes

Inherited from:
SeqOps
def indexOfSlice[B >: Node](that: Seq[B]): Int

Attributes

Inherited from:
SeqOps
def indexOfSlice[B >: Node](that: Seq[B], from: Int): Int

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps
def indices: Range

Attributes

Inherited from:
SeqOps
def init: C

Attributes

Inherited from:
IterableOps
def inits: Iterator[C]

Attributes

Inherited from:
IterableOps

Attributes

Inherited from:
ArrayBuffer

Attributes

Inherited from:
ArrayBuffer
override def intersect[B >: Node](that: Seq[B]): C

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps

Attributes

Inherited from:
SeqOps
override def isEmpty: Boolean

Attributes

Definition Classes
Inherited from:
SeqOps
override def isTraversableAgain: Boolean

Attributes

Definition Classes
Inherited from:
IterableOps

Attributes

Definition Classes
Inherited from:
ArrayBuffer
def iterator: Iterator[A]

Attributes

Inherited from:
IndexedSeqOps
override def knownSize: Int

Attributes

Definition Classes
Inherited from:
ArrayBuffer
override def last: A

Attributes

Definition Classes
Inherited from:
IndexedSeqOps
def lastIndexOf[B >: Node](elem: B, end: Int): Int

Attributes

Inherited from:
SeqOps
def lastIndexOfSlice[B >: Node](that: Seq[B]): Int

Attributes

Inherited from:
SeqOps
def lastIndexOfSlice[B >: Node](that: Seq[B], end: Int): Int

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps
def lastOption: Option[A]

Attributes

Inherited from:
IterableOps

Attributes

Inherited from:
Iterable
def length: Int

Attributes

Inherited from:
ArrayBuffer
final override def lengthCompare(that: Iterable[_]): Int

Attributes

Definition Classes
Inherited from:
IndexedSeqOps
final override def lengthCompare(len: Int): Int

Attributes

Definition Classes
Inherited from:
IndexedSeqOps

Attributes

Inherited from:
SeqOps
def lift: A => Option[B]

Attributes

Inherited from:
PartialFunction
override def map[B](f: Node => B): CC[B]

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
def mapInPlace(f: Node => Node): IndexedSeqOps.this.type

Attributes

Inherited from:
IndexedSeqOps
def max[B >: Node](implicit ord: Ordering[B]): A

Attributes

Inherited from:
IterableOnceOps
def maxBy[B](f: Node => B)(implicit cmp: Ordering[B]): A

Attributes

Inherited from:
IterableOnceOps
def maxByOption[B](f: Node => B)(implicit cmp: Ordering[B]): Option[A]

Attributes

Inherited from:
IterableOnceOps
def maxOption[B >: Node](implicit ord: Ordering[B]): Option[A]

Attributes

Inherited from:
IterableOnceOps
def min[B >: Node](implicit ord: Ordering[B]): A

Attributes

Inherited from:
IterableOnceOps
def minBy[B](f: Node => B)(implicit cmp: Ordering[B]): A

Attributes

Inherited from:
IterableOnceOps
def minByOption[B](f: Node => B)(implicit cmp: Ordering[B]): Option[A]

Attributes

Inherited from:
IterableOnceOps
def minOption[B >: Node](implicit ord: Ordering[B]): Option[A]

Attributes

Inherited from:
IterableOnceOps
final def mkString: String

Attributes

Inherited from:
IterableOnceOps
final def mkString(sep: String): String

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
IterableOnceOps
protected def newSpecificBuilder: Builder[A, CC[A]]

Attributes

Inherited from:
IterableFactoryDefaults

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
PartialFunction
override def padTo[B >: Node](len: Int, elem: B): CC[B]

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps
def padToInPlace(len: Int, elem: Node): Buffer.this.type

Attributes

Inherited from:
Buffer
override def partition(p: Node => Boolean): (C, C)

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
override def partitionMap[A1, A2](f: Node => Either[A1, A2]): (CC[A1], CC[A2])

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
def patch[B >: Node](from: Int, other: IterableOnce[B], replaced: Int): CC[B]

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
IndexedBuffer

Attributes

Inherited from:
SeqOps
def prepend(elem: Node): ArrayBuffer.this.type

Attributes

Inherited from:
ArrayBuffer

Attributes

Inherited from:
Buffer
override def prepended[B >: Node](elem: B): CC[B]

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps
override def prependedAll[B >: Node](prefix: IterableOnce[B]): CC[B]

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps
def product[B >: Node](implicit num: Numeric[B]): B

Attributes

Inherited from:
IterableOnceOps
def reduce[B >: Node](op: (B, B) => B): B

Attributes

Inherited from:
IterableOnceOps
override def reduceLeft[B >: Node](op: (B, Node) => B): B

Attributes

Definition Classes
Inherited from:
ArrayBuffer
def reduceLeftOption[B >: Node](op: (B, Node) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps
def reduceOption[B >: Node](op: (B, B) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps
override def reduceRight[B >: Node](op: (Node, B) => B): B

Attributes

Definition Classes
Inherited from:
ArrayBuffer
def reduceRightOption[B >: Node](op: (Node, B) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
ArrayBuffer
def remove(index: Int): A

Attributes

Inherited from:
ArrayBuffer
override def reverse: C

Attributes

Definition Classes
Inherited from:
IndexedSeqOps
override def reverseIterator: Iterator[A]

Attributes

Definition Classes
Inherited from:
IndexedSeqOps
override protected def reversed: Iterable[A]

Attributes

Definition Classes
Inherited from:
IndexedSeqOps
def runWith[U](action: Node => U): A => Boolean

Attributes

Inherited from:
PartialFunction

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps
def scan[B >: Node](z: B)(op: (B, B) => B): CC[B]

Attributes

Inherited from:
IterableOps
override def scanLeft[B](z: B)(op: (B, Node) => B): CC[B]

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
def scanRight[B](z: B)(op: (Node, B) => B): CC[B]

Attributes

Inherited from:
IterableOps
override def search[B >: Node](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult

Attributes

Definition Classes
Inherited from:
IndexedSeqOps
override def search[B >: Node](elem: B)(implicit ord: Ordering[B]): SearchResult

Attributes

Definition Classes
Inherited from:
IndexedSeqOps

Attributes

Inherited from:
SeqOps
final def segmentLength(p: Node => Boolean): Int

Attributes

Inherited from:
SeqOps
final override def size: Int

Attributes

Definition Classes
Inherited from:
SeqOps
final override def sizeCompare(that: Iterable[_]): Int

Attributes

Definition Classes
Inherited from:
SeqOps
final override def sizeCompare(otherSize: Int): Int

Attributes

Definition Classes
Inherited from:
SeqOps

Attributes

Inherited from:
ArrayBuffer
final def sizeIs: SizeCompareOps

Attributes

Inherited from:
IterableOps
override def slice(from: Int, until: Int): C

Attributes

Definition Classes
Inherited from:
IndexedSeqOps
def sliceInPlace(start: Int, end: Int): Buffer.this.type

Attributes

Inherited from:
Buffer

Attributes

Inherited from:
IterableOps
def sliding(size: Int): Iterator[C]

Attributes

Inherited from:
IterableOps
def sortBy[B](f: Node => B)(implicit ord: Ordering[B]): C

Attributes

Inherited from:
SeqOps
override def sortInPlace[B >: Node]()(implicit ord: Ordering[B]): ArrayBuffer.this.type

Attributes

Definition Classes
Inherited from:
ArrayBuffer
def sortInPlaceBy[B](f: Node => B)(implicit ord: Ordering[B]): IndexedSeqOps.this.type

Attributes

Inherited from:
IndexedSeqOps
def sortInPlaceWith(lt: (Node, Node) => Boolean): IndexedSeqOps.this.type

Attributes

Inherited from:
IndexedSeqOps
def sortWith(lt: (Node, Node) => Boolean): C

Attributes

Inherited from:
SeqOps
def sorted[B >: Node](implicit ord: Ordering[B]): C

Attributes

Inherited from:
SeqOps
override def span(p: Node => Boolean): (C, C)

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
override def splitAt(n: Int): (C, C)

Attributes

Definition Classes
Inherited from:
IterableOps

Attributes

Inherited from:
SeqOps
override def stepper[S <: Stepper[_]](implicit shape: StepperShape[Node, S]): S & EfficientSplit

Attributes

Definition Classes
Inherited from:
ArrayBuffer

Attributes

Inherited from:
Shrinkable
def subtractOne(x: Node): Buffer.this.type

Attributes

Inherited from:
Buffer
def sum[B >: Node](implicit num: Numeric[B]): B

Attributes

Inherited from:
IterableOnceOps
def tail: C

Attributes

Inherited from:
IterableOps
def tails: Iterator[C]

Attributes

Inherited from:
IterableOps
override def take(n: Int): C

Attributes

Definition Classes
Inherited from:
IndexedSeqOps
def takeInPlace(n: Int): Buffer.this.type

Attributes

Inherited from:
Buffer
override def takeRight(n: Int): C

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
def takeRightInPlace(n: Int): Buffer.this.type

Attributes

Inherited from:
Buffer
def takeWhile(p: Node => Boolean): C

Attributes

Inherited from:
IterableOps
def takeWhileInPlace(p: Node => Boolean): Buffer.this.type

Attributes

Inherited from:
Buffer
override def tapEach[U](f: Node => U): C

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
def to[C1](factory: Factory[Node, C1]): C1

Attributes

Inherited from:
IterableOnceOps
def toArray[B >: Node : ClassTag]: Array[B]

Attributes

Inherited from:
IterableOnceOps
final def toBuffer[B >: Node]: Buffer[B]

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
IterableOnceOps
def toList: List[A]

Attributes

Inherited from:
IterableOnceOps
def toMap[K, V](implicit ev: Node <:< (K, V)): Map[K, V]

Attributes

Inherited from:
IterableOnceOps
def toSeq: Seq[A]

Attributes

Inherited from:
IterableOnceOps
def toSet[B >: Node]: Set[B]

Attributes

Inherited from:
IterableOnceOps
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Seq -> Function1 -> Iterable -> Any
Inherited from:
Seq
def toVector: Vector[A]

Attributes

Inherited from:
IterableOnceOps
def transpose[B](implicit asIterable: Node => Iterable[B]): CC[CC[B]]

Attributes

Inherited from:
IterableOps
def trimToSize(): Unit

Attributes

Inherited from:
ArrayBuffer
def unapply(a: Int): Option[B]

Attributes

Inherited from:
PartialFunction
override def unzip[A1, A2](implicit asPair: Node => (A1, A2)): (CC[A1], CC[A2])

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
override def unzip3[A1, A2, A3](implicit asTriple: Node => (A1, A2, A3)): (CC[A1], CC[A2], CC[A3])

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps

Attributes

Inherited from:
ArrayBuffer
def updated[B >: Node](index: Int, elem: B): CC[B]

Attributes

Inherited from:
SeqOps
override def view: ArrayBufferView[A]

Attributes

Definition Classes
Inherited from:
ArrayBuffer
def withFilter(p: Node => Boolean): WithFilter[A, CC]

Attributes

Inherited from:
IterableOps
override def zip[B](that: IterableOnce[B]): CC[(A, B)]

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
def zipAll[A1 >: Node, B](that: Iterable[B], thisElem: A1, thatElem: B): CC[(A1, B)]

Attributes

Inherited from:
IterableOps
override def zipWithIndex: CC[(A, Int)]

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps

Deprecated and Inherited methods

final def +=(elem1: Node, elem2: Node, elems: Node*): Growable.this.type

Attributes

Deprecated
[Since version 2.13.0] Use `++=` aka `addAll` instead of varargs `+=`; infix operations with an operand of multiple args will be deprecated
Inherited from:
Growable
def -=(elem1: Node, elem2: Node, elems: Node*): Shrinkable.this.type

Attributes

Deprecated
[Since version 2.13.3] Use `--=` aka `subtractAll` instead of varargs `-=`; infix operations with an operand of multiple args will be deprecated
Inherited from:
Shrinkable
final def /:[B](z: B)(op: (B, Node) => B): B

Attributes

Deprecated
[Since version 2.13.0] Use foldLeft instead of /:
Inherited from:
IterableOnceOps
final def :\[B](z: B)(op: (Node, B) => B): B

Attributes

Deprecated
[Since version 2.13.0] Use foldRight instead of :\\
Inherited from:
IterableOnceOps
def aggregate[B](z: => B)(seqop: (B, Node) => B, combop: (B, B) => B): B

Attributes

Deprecated
[Since version 2.13.0] `aggregate` is not relevant for sequential collections. Use `foldLeft(z)(seqop)` instead.
Inherited from:
IterableOnceOps
final def append(elems: Node*): Buffer.this.type

Attributes

Deprecated
[Since version 2.13.0] Use appendAll instead
Inherited from:
Buffer

Attributes

Deprecated
[Since version 2.13.0] Use iterableFactory instead
Inherited from:
IterableOps
final def copyToBuffer[B >: Node](dest: Buffer[B]): Unit

Attributes

Deprecated
[Since version 2.13.0] Use `dest ++= coll` instead
Inherited from:
IterableOnceOps

Attributes

Deprecated
[Since version 2.13.0] Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)
Inherited from:
IterableOnceOps
def mapResult[NewTo](f: ArrayBuffer[Node] => NewTo): Builder[A, NewTo]

Attributes

Deprecated
[Since version 2.13.0] Use \'new GrowableBuilder(this).mapResult(f)\' instead
Inherited from:
ArrayBuffer
final def prefixLength(p: Node => Boolean): Int

Attributes

Deprecated
[Since version 2.13.0] Use segmentLength instead of prefixLength
Inherited from:
SeqOps
final def prepend(elems: Node*): Buffer.this.type

Attributes

Deprecated
[Since version 2.13.0] Use prependAll instead
Inherited from:
Buffer
final def repr: C

Attributes

Deprecated
[Since version 2.13.0] Use coll instead of repr in a collection implementation, use the collection value itself from the outside
Inherited from:
IterableOps
def result(): ArrayBuffer.this.type

Attributes

Deprecated
[Since version 2.13.0] Use \'this\' instance instead
Inherited from:
ArrayBuffer
def reverseMap[B](f: Node => B): CC[B]

Attributes

Deprecated
[Since version 2.13.0] Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)
Inherited from:
SeqOps
def seq: Iterable.this.type

Attributes

Deprecated
[Since version 2.13.0] Iterable.seq always returns the iterable itself
Inherited from:
Iterable
final def toIterable: Iterable.this.type

Attributes

Deprecated
[Since version 2.13.7] toIterable is internal and will be made protected; its name is similar to `toList` or `toSeq`, but it doesn\'t copy non-immutable collections
Inherited from:
Iterable
final def toIterator: Iterator[A]

Attributes

Deprecated
[Since version 2.13.0] Use .iterator instead of .toIterator
Inherited from:
IterableOnceOps
final def toStream: Stream[A]

Attributes

Deprecated
[Since version 2.13.0] Use .to(LazyList) instead of .toStream
Inherited from:
IterableOnceOps
final def toTraversable: Iterable[A]

Attributes

Deprecated
[Since version 2.13.0] toTraversable is internal and will be made protected; its name is similar to `toList` or `toSeq`, but it doesn\'t copy non-immutable collections
Inherited from:
IterableOps
final def transform(f: Node => Node): SeqOps.this.type

Attributes

Deprecated
[Since version 2.13.0] Use `mapInPlace` on an `IndexedSeq` instead
Inherited from:
SeqOps
def trimEnd(n: Int): Unit

Attributes

Deprecated
[Since version 2.13.4] use dropRightInPlace instead
Inherited from:
Buffer
def trimStart(n: Int): Unit

Attributes

Deprecated
[Since version 2.13.4] use dropInPlace instead
Inherited from:
Buffer
final def union[B >: Node](that: Seq[B]): CC[B]

Attributes

Deprecated
[Since version 2.13.0] Use `concat` instead
Inherited from:
SeqOps
override def view(from: Int, until: Int): IndexedSeqView[A]

Attributes

Deprecated
[Since version 2.13.0] Use .view.slice(from, until) instead of .view(from, until)
Definition Classes
Inherited from:
IndexedSeqOps