Packages

abstract class NodeSeq extends AbstractSeq[Node] with collection.immutable.Seq[Node] with ScalaVersionSpecificNodeSeq with Equality with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NodeSeq
  2. Serializable
  3. Equality
  4. ScalaVersionSpecificNodeSeq
  5. StrictOptimizedSeqOps
  6. StrictOptimizedSeqOps
  7. StrictOptimizedIterableOps
  8. Seq
  9. SeqOps
  10. Iterable
  11. AbstractSeq
  12. Seq
  13. Equals
  14. SeqOps
  15. PartialFunction
  16. Function1
  17. AbstractIterable
  18. Iterable
  19. IterableFactoryDefaults
  20. IterableOps
  21. IterableOnceOps
  22. IterableOnce
  23. AnyRef
  24. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new NodeSeq()

Abstract Value Members

  1. abstract def theSeq: collection.Seq[Node]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ++(suffix: Seq[Node]): NodeSeq
    Definition Classes
    ScalaVersionSpecificNodeSeq
    Annotations
    @inline()
  4. final def ++[B >: Node](suffix: collection.IterableOnce[B]): collection.immutable.Seq[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. final def ++:[B >: Node](prefix: collection.IterableOnce[B]): collection.immutable.Seq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  6. final def +:[B >: Node](elem: B): collection.immutable.Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  7. final def :+[B >: Node](elem: B): collection.immutable.Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  8. final def :++[B >: Node](suffix: collection.IterableOnce[B]): collection.immutable.Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  9. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def \(that: String): NodeSeq

    Projection function, which returns elements of this sequence based on the string that.

    Projection function, which returns elements of this sequence based on the string that. Use:

    • this \ "foo" to get a list of all children that are labelled with "foo";
    • this \ "_" to get a list of all child elements (wildcard);
    • this \ "@foo" to get the unprefixed attribute "foo" of this;
    • this \ "@{uri}foo" to get the prefixed attribute "pre:foo" whose prefix "pre" is resolved to the namespace "uri".

    For attribute projections, the resulting scala.xml.NodeSeq attribute values are wrapped in a scala.xml.Group.

    There is no support for searching a prefixed attribute by its literal prefix.

    The document order is preserved.

  11. def \@(attributeName: String): String

    Convenience method which returns string text of the named attribute.

    Convenience method which returns string text of the named attribute. Use:

    • that \@ "foo" to get the string text of attribute "foo";
  12. def \\(that: String): NodeSeq

    Projection function, which returns elements of this sequence and of all its subsequences, based on the string that.

    Projection function, which returns elements of this sequence and of all its subsequences, based on the string that. Use:

    • this \\ "foo" to get a list of all elements that are labelled with "foo", including this;
    • this \\ "_" to get a list of all elements (wildcard), including this;
    • this \\ "@foo" to get all unprefixed attributes "foo";
    • this \\ "@{uri}foo" to get all prefixed attribute "pre:foo" whose prefix "pre" is resolved to the namespace "uri".

    For attribute projections, the resulting scala.xml.NodeSeq attribute values are wrapped in a scala.xml.Group.

    There is no support for searching a prefixed attribute by its literal prefix.

    The document order is preserved.

  13. final def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  14. final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  15. def addString(b: collection.mutable.StringBuilder, start: String, sep: String, end: String): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
  16. def andThen[C](k: PartialFunction[Node, C]): PartialFunction[Int, C]
    Definition Classes
    PartialFunction
  17. def andThen[C](k: (Node) => C): PartialFunction[Int, C]
    Definition Classes
    PartialFunction → Function1
  18. def appended(base: Node): NodeSeq
    Definition Classes
    ScalaVersionSpecificNodeSeq
  19. def appended[B >: Node](elem: B): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  20. def appendedAll(suffix: collection.IterableOnce[Node]): NodeSeq
    Definition Classes
    ScalaVersionSpecificNodeSeq
  21. def appendedAll[B >: Node](suffix: collection.IterableOnce[B]): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  22. def apply(f: (Node) => Boolean): NodeSeq
  23. def apply(i: Int): Node
    Definition Classes
    NodeSeq → SeqOps → Function1
  24. def applyOrElse[A1 <: Int, B1 >: Node](x: A1, default: (A1) => B1): B1
    Definition Classes
    PartialFunction
  25. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  26. def basisForHashCode: collection.Seq[Any]
    Attributes
    protected
    Definition Classes
    NodeSeqEquality
  27. def canEqual(other: Any): Boolean

    We insist we're only equal to other xml.Equality implementors, which heads off a lot of inconsistency up front.

    We insist we're only equal to other xml.Equality implementors, which heads off a lot of inconsistency up front.

    Definition Classes
    NodeSeqEquality → Seq → Equals
  28. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  29. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  30. final def coll: NodeSeq.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  31. def collect[B](pf: PartialFunction[Node, B]): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  32. def collectFirst[B](pf: PartialFunction[Node, B]): Option[B]
    Definition Classes
    IterableOnceOps
  33. def combinations(n: Int): collection.Iterator[NodeSeq]
    Definition Classes
    SeqOps
  34. def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, Node]
    Definition Classes
    PartialFunction
  35. def compose[A](g: (A) => Int): (A) => Node
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  36. def concat(suffix: collection.IterableOnce[Node]): NodeSeq
    Definition Classes
    ScalaVersionSpecificNodeSeq
  37. final def concat[B >: Node](suffix: collection.IterableOnce[B]): collection.immutable.Seq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  38. def contains[A1 >: Node](elem: A1): Boolean
    Definition Classes
    SeqOps
  39. def containsSlice[B](that: collection.Seq[B]): Boolean
    Definition Classes
    SeqOps
  40. def copyToArray[B >: Node](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  41. def copyToArray[B >: Node](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  42. def copyToArray[B >: Node](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  43. def corresponds[B](that: collection.Seq[B])(p: (Node, B) => Boolean): Boolean
    Definition Classes
    SeqOps
  44. def corresponds[B](that: collection.IterableOnce[B])(p: (Node, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  45. def count(p: (Node) => Boolean): Int
    Definition Classes
    IterableOnceOps
  46. def diff[B >: Node](that: collection.Seq[B]): NodeSeq
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  47. def distinct: NodeSeq
    Definition Classes
    SeqOps
  48. def distinctBy[B](f: (Node) => B): NodeSeq
    Definition Classes
    StrictOptimizedSeqOps → StrictOptimizedSeqOps → SeqOps
  49. def drop(n: Int): NodeSeq
    Definition Classes
    IterableOps → IterableOnceOps
  50. def dropRight(n: Int): NodeSeq
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  51. def dropWhile(p: (Node) => Boolean): NodeSeq
    Definition Classes
    IterableOps → IterableOnceOps
  52. def elementWise: ElementWiseExtractor[Int, Node]
    Definition Classes
    PartialFunction
  53. def empty: NodeSeq
    Definition Classes
    ScalaVersionSpecificNodeSeq → IterableOps
  54. def endsWith[B >: Node](that: collection.Iterable[B]): Boolean
    Definition Classes
    SeqOps
  55. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  56. def equals(other: Any): Boolean
    Definition Classes
    Equality → Equals → AnyRef → Any
  57. def exists(p: (Node) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  58. def filter(pred: (Node) => Boolean): NodeSeq
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  59. def filterImpl(pred: (Node) => Boolean, isFlipped: Boolean): NodeSeq
    Attributes
    protected[collection]
    Definition Classes
    StrictOptimizedIterableOps
  60. def filterNot(pred: (Node) => Boolean): NodeSeq
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  61. def find(p: (Node) => Boolean): Option[Node]
    Definition Classes
    IterableOnceOps
  62. def findLast(p: (Node) => Boolean): Option[Node]
    Definition Classes
    SeqOps
  63. def flatMap(f: (Node) => collection.IterableOnce[Node]): NodeSeq
    Definition Classes
    ScalaVersionSpecificNodeSeq
  64. def flatMap[B](f: (Node) => collection.IterableOnce[B]): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  65. def flatten[B](implicit toIterableOnce: (Node) => collection.IterableOnce[B]): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  66. def fold[A1 >: Node](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  67. def foldLeft[B](z: B)(op: (B, Node) => B): B
    Definition Classes
    IterableOnceOps
  68. def foldRight[B](z: B)(op: (Node, B) => B): B
    Definition Classes
    IterableOnceOps
  69. def forall(p: (Node) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  70. def foreach[U](f: (Node) => U): Unit
    Definition Classes
    IterableOnceOps
  71. def fromSpecific(coll: collection.IterableOnce[Node]): NodeSeq
    Definition Classes
    ScalaVersionSpecificNodeSeq → IterableOps
  72. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  73. def groupBy[K](f: (Node) => K): Map[K, NodeSeq]
    Definition Classes
    IterableOps
  74. def groupMap[K, B](key: (Node) => K)(f: (Node) => B): Map[K, collection.immutable.Seq[B]]
    Definition Classes
    IterableOps
  75. def groupMapReduce[K, B](key: (Node) => K)(f: (Node) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  76. def grouped(size: Int): collection.Iterator[NodeSeq]
    Definition Classes
    IterableOps
  77. def hashCode(): Int

    It's be nice to make these final, but there are probably people out there subclassing the XML types, especially when it comes to equals.

    It's be nice to make these final, but there are probably people out there subclassing the XML types, especially when it comes to equals. However WE at least can pretend they are final since clearly individual classes cannot be trusted to maintain a semblance of order.

    Definition Classes
    Equality → AnyRef → Any
  78. def head: Node
    Definition Classes
    IterableOps
  79. def headOption: Option[Node]
    Definition Classes
    IterableOps
  80. def indexOf[B >: Node](elem: B): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOf(elem, from) instead - indexOf(elem) calls indexOf(elem, 0)", "2.13.0")
  81. def indexOf[B >: Node](elem: B, from: Int): Int
    Definition Classes
    SeqOps
  82. def indexOfSlice[B >: Node](that: collection.Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOfSlice(that, from) instead - indexOfSlice(that) calls indexOfSlice(that, 0)", "2.13.0")
  83. def indexOfSlice[B >: Node](that: collection.Seq[B], from: Int): Int
    Definition Classes
    SeqOps
  84. def indexWhere(p: (Node) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexWhere(p, from) instead - indexWhere(p) calls indexWhere(p, 0)", "2.13.0")
  85. def indexWhere(p: (Node) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  86. def indices: collection.immutable.Range
    Definition Classes
    SeqOps
  87. def init: NodeSeq
    Definition Classes
    IterableOps
  88. def inits: collection.Iterator[NodeSeq]
    Definition Classes
    IterableOps
  89. def intersect[B >: Node](that: collection.Seq[B]): NodeSeq
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  90. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    SeqOps
  91. def isEmpty: Boolean
    Definition Classes
    SeqOps → IterableOnceOps
  92. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  93. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  94. def iterableFactory: SeqFactory[collection.immutable.Seq]
    Definition Classes
    Seq → Seq → Iterable → Iterable → IterableOps
  95. def iterator: collection.Iterator[Node]
    Definition Classes
    NodeSeq → IterableOnce
  96. def knownSize: Int
    Definition Classes
    IterableOnce
  97. def last: Node
    Definition Classes
    IterableOps
  98. def lastIndexOf[B >: Node](elem: B, end: Int): Int
    Definition Classes
    SeqOps
  99. def lastIndexOfSlice[B >: Node](that: collection.Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexOfSlice(that, end) instead - lastIndexOfSlice(that) calls lastIndexOfSlice(that, Int.MaxValue)", "2.13.0")
  100. def lastIndexOfSlice[B >: Node](that: collection.Seq[B], end: Int): Int
    Definition Classes
    SeqOps
  101. def lastIndexWhere(p: (Node) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexWhere(p, end) instead - lastIndexWhere(p) calls lastIndexWhere(p, Int.MaxValue)", "2.13.0")
  102. def lastIndexWhere(p: (Node) => Boolean, end: Int): Int
    Definition Classes
    SeqOps
  103. def lastOption: Option[Node]
    Definition Classes
    IterableOps
  104. def lazyZip[B](that: collection.Iterable[B]): LazyZip2[Node, B, NodeSeq.this.type]
    Definition Classes
    Iterable
  105. def length: Int
    Definition Classes
    NodeSeq → SeqOps
  106. def lengthCompare(that: collection.Iterable[_]): Int
    Definition Classes
    SeqOps
  107. def lengthCompare(len: Int): Int
    Definition Classes
    SeqOps
  108. final def lengthIs: SizeCompareOps
    Definition Classes
    SeqOps
    Annotations
    @inline()
  109. def lift: (Int) => Option[Node]
    Definition Classes
    PartialFunction
  110. def map(f: (Node) => Node): NodeSeq
    Definition Classes
    ScalaVersionSpecificNodeSeq
  111. def map[B](f: (Node) => B): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  112. def max[B >: Node](implicit ord: math.Ordering[B]): Node
    Definition Classes
    IterableOnceOps
  113. def maxBy[B](f: (Node) => B)(implicit cmp: math.Ordering[B]): Node
    Definition Classes
    IterableOnceOps
  114. def maxByOption[B](f: (Node) => B)(implicit cmp: math.Ordering[B]): Option[Node]
    Definition Classes
    IterableOnceOps
  115. def maxOption[B >: Node](implicit ord: math.Ordering[B]): Option[Node]
    Definition Classes
    IterableOnceOps
  116. def min[B >: Node](implicit ord: math.Ordering[B]): Node
    Definition Classes
    IterableOnceOps
  117. def minBy[B](f: (Node) => B)(implicit cmp: math.Ordering[B]): Node
    Definition Classes
    IterableOnceOps
  118. def minByOption[B](f: (Node) => B)(implicit cmp: math.Ordering[B]): Option[Node]
    Definition Classes
    IterableOnceOps
  119. def minOption[B >: Node](implicit ord: math.Ordering[B]): Option[Node]
    Definition Classes
    IterableOnceOps
  120. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  121. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  122. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  123. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  124. def newSpecificBuilder: Builder[Node, NodeSeq]
    Definition Classes
    ScalaVersionSpecificNodeSeq → IterableOps
  125. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  126. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  127. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  128. def occCounts[B](sq: collection.Seq[B]): Map[B, Int]
    Attributes
    protected[collection]
    Definition Classes
    SeqOps
  129. def orElse[A1 <: Int, B1 >: Node](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  130. def padTo[B >: Node](len: Int, elem: B): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  131. def partition(p: (Node) => Boolean): (NodeSeq, NodeSeq)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  132. def partitionMap[A1, A2](f: (Node) => Either[A1, A2]): (collection.immutable.Seq[A1], collection.immutable.Seq[A2])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  133. def patch[B >: Node](from: Int, other: collection.IterableOnce[B], replaced: Int): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  134. def permutations: collection.Iterator[NodeSeq]
    Definition Classes
    SeqOps
  135. def prepended(base: Node): NodeSeq
    Definition Classes
    ScalaVersionSpecificNodeSeq
  136. def prepended[B >: Node](elem: B): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  137. def prependedAll(prefix: collection.IterableOnce[Node]): NodeSeq
    Definition Classes
    ScalaVersionSpecificNodeSeq
  138. def prependedAll[B >: Node](prefix: collection.IterableOnce[B]): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  139. def product[B >: Node](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  140. def reduce[B >: Node](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  141. def reduceLeft[B >: Node](op: (B, Node) => B): B
    Definition Classes
    IterableOnceOps
  142. def reduceLeftOption[B >: Node](op: (B, Node) => B): Option[B]
    Definition Classes
    IterableOnceOps
  143. def reduceOption[B >: Node](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  144. def reduceRight[B >: Node](op: (Node, B) => B): B
    Definition Classes
    IterableOnceOps
  145. def reduceRightOption[B >: Node](op: (Node, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  146. def reverse: NodeSeq
    Definition Classes
    SeqOps
  147. def reverseIterator: collection.Iterator[Node]
    Definition Classes
    SeqOps
  148. def reversed: collection.Iterable[Node]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  149. def runWith[U](action: (Node) => U): (Int) => Boolean
    Definition Classes
    PartialFunction
  150. def sameElements[B >: Node](that: collection.IterableOnce[B]): Boolean
    Definition Classes
    SeqOps
  151. def scan[B >: Node](z: B)(op: (B, B) => B): collection.immutable.Seq[B]
    Definition Classes
    IterableOps
  152. def scanLeft[B](z: B)(op: (B, Node) => B): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  153. def scanRight[B](z: B)(op: (Node, B) => B): collection.immutable.Seq[B]
    Definition Classes
    IterableOps
  154. def search[B >: Node](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    SeqOps
  155. def search[B >: Node](elem: B)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    SeqOps
  156. def segmentLength(p: (Node) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  157. final def segmentLength(p: (Node) => Boolean): Int
    Definition Classes
    SeqOps
  158. final def size: Int
    Definition Classes
    SeqOps → IterableOnceOps
  159. final def sizeCompare(that: collection.Iterable[_]): Int
    Definition Classes
    SeqOps → IterableOps
  160. final def sizeCompare(otherSize: Int): Int
    Definition Classes
    SeqOps → IterableOps
  161. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  162. def slice(from: Int, until: Int): NodeSeq
    Definition Classes
    IterableOps → IterableOnceOps
  163. def sliding(size: Int, step: Int): collection.Iterator[NodeSeq]
    Definition Classes
    IterableOps
  164. def sliding(size: Int): collection.Iterator[NodeSeq]
    Definition Classes
    IterableOps
  165. def sortBy[B](f: (Node) => B)(implicit ord: Ordering[B]): NodeSeq
    Definition Classes
    SeqOps
  166. def sortWith(lt: (Node, Node) => Boolean): NodeSeq
    Definition Classes
    SeqOps
  167. def sorted[B >: Node](implicit ord: Ordering[B]): NodeSeq
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  168. def span(p: (Node) => Boolean): (NodeSeq, NodeSeq)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  169. def splitAt(n: Int): (NodeSeq, NodeSeq)
    Definition Classes
    IterableOps → IterableOnceOps
  170. def startsWith[B >: Node](that: collection.IterableOnce[B], offset: Int): Boolean
    Definition Classes
    SeqOps
  171. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Node, S]): S
    Definition Classes
    IterableOnce
  172. final def strictOptimizedCollect[B, C2](b: Builder[B, C2], pf: PartialFunction[Node, B]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  173. final def strictOptimizedConcat[B >: Node, C2](that: collection.IterableOnce[B], b: Builder[B, C2]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  174. final def strictOptimizedFlatMap[B, C2](b: Builder[B, C2], f: (Node) => collection.IterableOnce[B]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  175. final def strictOptimizedFlatten[B, C2](b: Builder[B, C2])(implicit toIterableOnce: (Node) => collection.IterableOnce[B]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  176. final def strictOptimizedMap[B, C2](b: Builder[B, C2], f: (Node) => B): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  177. final def strictOptimizedZip[B, C2](that: collection.IterableOnce[B], b: Builder[(Node, B), C2]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  178. def strict_!=(other: Equality): Boolean
    Definition Classes
    Equality
  179. def strict_==(other: Equality): Boolean
    Definition Classes
    NodeSeqEquality
  180. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Seq → Iterable
  181. def sum[B >: Node](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  182. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  183. def tail: NodeSeq
    Definition Classes
    IterableOps
  184. def tails: collection.Iterator[NodeSeq]
    Definition Classes
    IterableOps
  185. def take(n: Int): NodeSeq
    Definition Classes
    IterableOps → IterableOnceOps
  186. def takeRight(n: Int): NodeSeq
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  187. def takeWhile(p: (Node) => Boolean): NodeSeq
    Definition Classes
    IterableOps → IterableOnceOps
  188. def tapEach[U](f: (Node) => U): NodeSeq
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  189. def text: String
  190. def to[C1](factory: Factory[Node, C1]): C1
    Definition Classes
    IterableOnceOps
  191. def toArray[B >: Node](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  192. final def toBuffer[B >: Node]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  193. def toIndexedSeq: collection.immutable.IndexedSeq[Node]
    Definition Classes
    IterableOnceOps
  194. final def toIterable: NodeSeq.this.type
    Definition Classes
    Iterable → IterableOps
  195. def toList: collection.immutable.List[Node]
    Definition Classes
    IterableOnceOps
  196. def toMap[K, V](implicit ev: <:<[Node, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  197. final def toSeq: NodeSeq.this.type
    Definition Classes
    Seq → IterableOnceOps
  198. def toSet[B >: Node]: Set[B]
    Definition Classes
    IterableOnceOps
  199. def toString(): String
    Definition Classes
    NodeSeq → Seq → Function1 → Iterable → AnyRef → Any
  200. def toVector: collection.immutable.Vector[Node]
    Definition Classes
    IterableOnceOps
  201. def transpose[B](implicit asIterable: (Node) => collection.Iterable[B]): collection.immutable.Seq[collection.immutable.Seq[B]]
    Definition Classes
    IterableOps
  202. def unapply(a: Int): Option[Node]
    Definition Classes
    PartialFunction
  203. def unzip[A1, A2](implicit asPair: (Node) => (A1, A2)): (collection.immutable.Seq[A1], collection.immutable.Seq[A2])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  204. def unzip3[A1, A2, A3](implicit asTriple: (Node) => (A1, A2, A3)): (collection.immutable.Seq[A1], collection.immutable.Seq[A2], collection.immutable.Seq[A3])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  205. def updated[B >: Node](index: Int, elem: B): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  206. def view: SeqView[Node]
    Definition Classes
    SeqOps → IterableOps
  207. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  208. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  209. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  210. def withFilter(p: (Node) => Boolean): WithFilter[Node, [_]collection.immutable.Seq[_]]
    Definition Classes
    IterableOps
  211. final def xml_!=(other: Any): Boolean
    Definition Classes
    Equality
  212. final def xml_==(other: Any): Boolean
    Definition Classes
    Equality
  213. def xml_sameElements[A](that: Iterable[A]): Boolean
  214. def zip[B](that: collection.IterableOnce[B]): collection.immutable.Seq[(Node, B)]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  215. def zipAll[A1 >: Node, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): collection.immutable.Seq[(A1, B)]
    Definition Classes
    IterableOps
  216. def zipWithIndex: collection.immutable.Seq[(Node, Int)]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps

Deprecated Value Members

  1. final def /:[B](z: B)(op: (B, Node) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  2. final def :\[B](z: B)(op: (Node, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  3. def aggregate[B](z: => B)(seqop: (B, Node) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  4. def companion: IterableFactory[[_]collection.immutable.Seq[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  5. final def copyToBuffer[B >: Node](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  6. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  7. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  8. final def prefixLength(p: (Node) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use segmentLength instead of prefixLength

  9. final def repr: NodeSeq
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  10. def reverseMap[B](f: (Node) => B): collection.immutable.Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)

  11. def seq: NodeSeq.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  12. final def toIterator: collection.Iterator[Node]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  13. final def toStream: collection.immutable.Stream[Node]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  14. final def toTraversable: collection.Traversable[Node]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  15. final def union[B >: Node](that: collection.Seq[B]): collection.immutable.Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use concat instead

  16. def view(from: Int, until: Int): View[Node]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

Inherited from java.io.Serializable

Inherited from Equality

Inherited from ScalaVersionSpecificNodeSeq

Inherited from AbstractSeq[Node]

Inherited from collection.Seq[Node]

Inherited from Equals

Inherited from PartialFunction[Int, Node]

Inherited from (Int) => Node

Inherited from AbstractIterable[Node]

Inherited from collection.Iterable[Node]

Inherited from AnyRef

Inherited from Any

Ungrouped