scala.xml

Document

class Document extends NodeSeq with XMLEvent with Serializable

A document information item (according to InfoSet spec). The comments are copied from the Infoset spec, only augmented with some information on the Scala types for definitions that might have no value. Also plays the role of an XMLEvent for pull parsing.

Annotations
@SerialVersionUID()
Version

1.0, 26/04/2005

Linear Supertypes
Serializable, java.io.Serializable, XMLEvent, NodeSeq, Equality, collection.immutable.Seq[Node], collection.immutable.Iterable[Node], collection.immutable.Traversable[Node], Immutable, AbstractSeq[Node], collection.Seq[Node], SeqLike[Node, NodeSeq], GenSeq[Node], GenSeqLike[Node, NodeSeq], PartialFunction[Int, Node], (Int) ⇒ Node, AbstractIterable[Node], collection.Iterable[Node], IterableLike[Node, NodeSeq], Equals, GenIterable[Node], GenIterableLike[Node, NodeSeq], AbstractTraversable[Node], collection.Traversable[Node], GenTraversable[Node], GenericTraversableTemplate[Node, collection.immutable.Seq], TraversableLike[Node, NodeSeq], GenTraversableLike[Node, NodeSeq], Parallelizable[Node, ParSeq[Node]], collection.TraversableOnce[Node], GenTraversableOnce[Node], FilterMonadic[Node, NodeSeq], HasNewBuilder[Node, NodeSeq], AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Document
  2. Serializable
  3. Serializable
  4. XMLEvent
  5. NodeSeq
  6. Equality
  7. Seq
  8. Iterable
  9. Traversable
  10. Immutable
  11. AbstractSeq
  12. Seq
  13. SeqLike
  14. GenSeq
  15. GenSeqLike
  16. PartialFunction
  17. Function1
  18. AbstractIterable
  19. Iterable
  20. IterableLike
  21. Equals
  22. GenIterable
  23. GenIterableLike
  24. AbstractTraversable
  25. Traversable
  26. GenTraversable
  27. GenericTraversableTemplate
  28. TraversableLike
  29. GenTraversableLike
  30. Parallelizable
  31. TraversableOnce
  32. GenTraversableOnce
  33. FilterMonadic
  34. HasNewBuilder
  35. AnyRef
  36. Any
Implicitly
  1. by seqToNodeSeq
  2. by traversable2ops
  3. by MonadOps
  4. by flattenTraversableOnce
  5. by StringAdd
  6. by StringFormat
  7. by Ensuring
  8. by ArrowAssoc
  9. by alternateImplicit
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Document()

Type Members

  1. type Self = NodeSeq

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]

    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from Document to StringAdd[Document] performed by method StringAdd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ++[B >: Node, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  6. def ++:[B >: Node, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    TraversableLike
  7. def ++:[B >: Node, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    TraversableLike
  8. def +:[B >: Node, That](elem: B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  9. def ->[B](y: B): (Document, B)

    Implicit information
    This member is added by an implicit conversion from Document to ArrowAssoc[Document] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  10. def /:[B](z: B)(op: (B, Node) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  11. def :+[B >: Node, That](elem: B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  12. def :\[B](z: B)(op: (Node, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  13. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  15. 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 elements that are labelled with "foo";
    • \ "_" to get a list of all elements (wildcard);
    • ns \ "@foo" to get the unprefixed attribute "foo";
    • ns \ "@{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.

    Definition Classes
    NodeSeq
  16. 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";
    Definition Classes
    NodeSeq
  17. 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";
    • \\ "_" to get a list of all elements (wildcard);
    • ns \\ "@foo" to get the unprefixed attribute "foo";
    • ns \\ "@{uri}foo" to get each 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.

    Definition Classes
    NodeSeq
  18. def addString(b: StringBuilder): StringBuilder

    Definition Classes
    TraversableOnce
  19. def addString(b: StringBuilder, sep: String): StringBuilder

    Definition Classes
    TraversableOnce
  20. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Definition Classes
    TraversableOnce
  21. def aggregate[B](z: ⇒ B)(seqop: (B, Node) ⇒ B, combop: (B, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. var allDeclarationsProcessed: Boolean

    9.

    9. This property is not strictly speaking part of the infoset of the document. Rather it is an indication of whether the processor has read the complete DTD. Its value is a boolean. If it is false, then certain properties (indicated in their descriptions below) may be unknown. If it is true, those properties are never unknown.

  23. def andThen[C](k: (Node) ⇒ C): PartialFunction[Int, C]

    Definition Classes
    PartialFunction → Function1
  24. def apply(f: (Node) ⇒ Boolean): NodeSeq

    Definition Classes
    NodeSeq
  25. def apply(i: Int): Node

    Definition Classes
    NodeSeq → SeqLike → GenSeqLike → Function1
  26. def applyOrElse[A1 <: Int, B1 >: Node](x: A1, default: (A1) ⇒ B1): B1

    Definition Classes
    PartialFunction
  27. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  28. def asParIterable: ParIterable[Node]

    Implicit information
    This member is added by an implicit conversion from Document to TraversableOps[Node] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  29. def asParSeq: ParSeq[Node]

    Implicit information
    This member is added by an implicit conversion from Document to TraversableOps[Node] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  30. var baseURI: String

    The base URI of the document entity.

  31. def basisForHashCode: Seq[Any]

    Attributes
    protected
    Definition Classes
    NodeSeqEquality
  32. 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
    DocumentNodeSeqEquality → IterableLike → Equals
  33. var children: Seq[Node]

    An ordered list of child information items, in document order.

    An ordered list of child information items, in document order. The list contains exactly one element information item. The list also contains one processing instruction information item for each processing instruction outside the document element, and one comment information item for each comment outside the document element. Processing instructions and comments within the DTD are excluded. If there is a document type declaration, the list also contains a document type declaration information item.

  34. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def collect[B, That](pf: PartialFunction[Node, B])(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  36. def collectFirst[B](pf: PartialFunction[Node, B]): Option[B]

    Definition Classes
    TraversableOnce
  37. def combinations(n: Int): collection.Iterator[NodeSeq]

    Definition Classes
    SeqLike
  38. def companion: GenericCompanion[collection.immutable.Seq]

    Definition Classes
    Seq → Seq → GenSeq → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  39. def compose[A](g: (A) ⇒ Int): (A) ⇒ Node

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  40. def contains[A1 >: Node](elem: A1): Boolean

    Definition Classes
    SeqLike
  41. def containsSlice[B](that: GenSeq[B]): Boolean

    Definition Classes
    SeqLike
  42. def copyToArray[B >: Node](xs: Array[B], start: Int, len: Int): Unit

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  43. def copyToArray[B >: Node](xs: Array[B]): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def copyToArray[B >: Node](xs: Array[B], start: Int): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def copyToBuffer[B >: Node](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  46. def corresponds[B](that: GenSeq[B])(p: (Node, B) ⇒ Boolean): Boolean

    Definition Classes
    SeqLike → GenSeqLike
  47. def count(p: (Node) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  48. def diff[B >: Node](that: GenSeq[B]): NodeSeq

    Definition Classes
    SeqLike → GenSeqLike
  49. def distinct: NodeSeq

    Definition Classes
    SeqLike → GenSeqLike
  50. var docElem: Node

    The element information item corresponding to the document element.

  51. def drop(n: Int): NodeSeq

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  52. def dropRight(n: Int): NodeSeq

    Definition Classes
    IterableLike
  53. def dropWhile(p: (Node) ⇒ Boolean): NodeSeq

    Definition Classes
    TraversableLike → GenTraversableLike
  54. var dtd: DTD

    The dtd that comes with the document, if any

  55. var encoding: Option[String]

    The name of the character encoding scheme in which the document entity is expressed.

  56. def endsWith[B](that: GenSeq[B]): Boolean

    Definition Classes
    SeqLike → GenSeqLike
  57. def ensuring(cond: (Document) ⇒ Boolean, msg: ⇒ Any): Document

    Implicit information
    This member is added by an implicit conversion from Document to Ensuring[Document] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  58. def ensuring(cond: (Document) ⇒ Boolean): Document

    Implicit information
    This member is added by an implicit conversion from Document to Ensuring[Document] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  59. def ensuring(cond: Boolean, msg: ⇒ Any): Document

    Implicit information
    This member is added by an implicit conversion from Document to Ensuring[Document] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  60. def ensuring(cond: Boolean): Document

    Implicit information
    This member is added by an implicit conversion from Document to Ensuring[Document] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  61. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  62. def equals(other: Any): Boolean

    Definition Classes
    Equality → Equals → AnyRef → Any
  63. def exists(p: (Node) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  64. def filter(p: (Node) ⇒ Boolean): NodeSeq

    Definition Classes
    TraversableLike → GenTraversableLike
  65. def filterNot(p: (Node) ⇒ Boolean): NodeSeq

    Definition Classes
    TraversableLike → GenTraversableLike
  66. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  67. def find(p: (Node) ⇒ Boolean): Option[Node]

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  68. def flatMap[B, That](f: (Node) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  69. def flatten[B](implicit asTraversable: (Node) ⇒ GenTraversableOnce[B]): collection.immutable.Seq[B]

    Definition Classes
    GenericTraversableTemplate
  70. def fold[A1 >: Node](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  71. def foldLeft[B](z: B)(op: (B, Node) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  72. def foldRight[B](z: B)(op: (Node, B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  73. def forall(p: (Node) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  74. def foreach[U](f: (Node) ⇒ U): Unit

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  75. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from Document to StringFormat[Document] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  76. def genericBuilder[B]: Builder[B, collection.immutable.Seq[B]]

    Definition Classes
    GenericTraversableTemplate
  77. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  78. def groupBy[K](f: (Node) ⇒ K): Map[K, NodeSeq]

    Definition Classes
    TraversableLike → GenTraversableLike
  79. def grouped(size: Int): collection.Iterator[NodeSeq]

    Definition Classes
    IterableLike
  80. def hasDefiniteSize: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  81. 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
  82. def head: Node

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  83. def headOption: Option[Node]

    Definition Classes
    TraversableLike → GenTraversableLike
  84. def ifParSeq[R](isbody: (ParSeq[Node]) ⇒ R): (TraversableOps[Node])#Otherwise[R]

    Implicit information
    This member is added by an implicit conversion from Document to TraversableOps[Node] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  85. def indexOf[B >: Node](elem: B, from: Int): Int

    Definition Classes
    GenSeqLike
  86. def indexOf[B >: Node](elem: B): Int

    Definition Classes
    GenSeqLike
  87. def indexOfSlice[B >: Node](that: GenSeq[B], from: Int): Int

    Definition Classes
    SeqLike
  88. def indexOfSlice[B >: Node](that: GenSeq[B]): Int

    Definition Classes
    SeqLike
  89. def indexWhere(p: (Node) ⇒ Boolean, from: Int): Int

    Definition Classes
    SeqLike → GenSeqLike
  90. def indexWhere(p: (Node) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  91. def indices: collection.immutable.Range

    Definition Classes
    SeqLike
  92. def init: NodeSeq

    Definition Classes
    TraversableLike → GenTraversableLike
  93. def inits: collection.Iterator[NodeSeq]

    Definition Classes
    TraversableLike
  94. def intersect[B >: Node](that: GenSeq[B]): NodeSeq

    Definition Classes
    SeqLike → GenSeqLike
  95. def isDefinedAt(idx: Int): Boolean

    Definition Classes
    GenSeqLike
  96. def isEmpty: Boolean

    Definition Classes
    SeqLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  97. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  98. def isParIterable: Boolean

    Implicit information
    This member is added by an implicit conversion from Document to TraversableOps[Node] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  99. def isParSeq: Boolean

    Implicit information
    This member is added by an implicit conversion from Document to TraversableOps[Node] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  100. def isParallel: Boolean

    Implicit information
    This member is added by an implicit conversion from Document to TraversableOps[Node] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  101. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  102. def iterator: collection.Iterator[Node]

    Definition Classes
    NodeSeq → IterableLike → GenIterableLike
  103. def last: Node

    Definition Classes
    TraversableLike → GenTraversableLike
  104. def lastIndexOf[B >: Node](elem: B, end: Int): Int

    Definition Classes
    GenSeqLike
  105. def lastIndexOf[B >: Node](elem: B): Int

    Definition Classes
    GenSeqLike
  106. def lastIndexOfSlice[B >: Node](that: GenSeq[B], end: Int): Int

    Definition Classes
    SeqLike
  107. def lastIndexOfSlice[B >: Node](that: GenSeq[B]): Int

    Definition Classes
    SeqLike
  108. def lastIndexWhere(p: (Node) ⇒ Boolean, end: Int): Int

    Definition Classes
    SeqLike → GenSeqLike
  109. def lastIndexWhere(p: (Node) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  110. def lastOption: Option[Node]

    Definition Classes
    TraversableLike → GenTraversableLike
  111. def length: Int

    Definition Classes
    NodeSeq → SeqLike → GenSeqLike
  112. def lengthCompare(len: Int): Int

    Definition Classes
    SeqLike
  113. def lift: (Int) ⇒ Option[Node]

    Definition Classes
    PartialFunction
  114. def map[B, That](f: (Node) ⇒ B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  115. def max[B >: Node](implicit cmp: Ordering[B]): Node

    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. def maxBy[B](f: (Node) ⇒ B)(implicit cmp: Ordering[B]): Node

    Definition Classes
    TraversableOnce → GenTraversableOnce
  117. def min[B >: Node](implicit cmp: Ordering[B]): Node

    Definition Classes
    TraversableOnce → GenTraversableOnce
  118. def minBy[B](f: (Node) ⇒ B)(implicit cmp: Ordering[B]): Node

    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. def mkString: String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. def mkString(sep: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def mkString(start: String, sep: String, end: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  122. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  123. def newBuilder: Builder[Node, NodeSeq]

    Creates a list buffer as builder for this class

    Creates a list buffer as builder for this class

    Attributes
    protected[this]
    Definition Classes
    NodeSeq → GenericTraversableTemplate → TraversableLike → HasNewBuilder
  124. def nonEmpty: Boolean

    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def notations: Seq[NotationDecl]

    An unordered set of notation information items, one for each notation declared in the DTD.

    An unordered set of notation information items, one for each notation declared in the DTD. If any notation is multiply declared, this property has no value.

  126. final def notify(): Unit

    Definition Classes
    AnyRef
  127. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  128. def orElse[A1 <: Int, B1 >: Node](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Definition Classes
    PartialFunction
  129. def padTo[B >: Node, That](len: Int, elem: B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  130. def par: ParSeq[Node]

    Definition Classes
    Parallelizable
  131. def parCombiner: Combiner[Node, ParSeq[Node]]

    Attributes
    protected[this]
    Definition Classes
    Seq → SeqLike → Iterable → TraversableLike → Parallelizable
  132. def partition(p: (Node) ⇒ Boolean): (NodeSeq, NodeSeq)

    Definition Classes
    TraversableLike → GenTraversableLike
  133. def patch[B >: Node, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  134. def permutations: collection.Iterator[NodeSeq]

    Definition Classes
    SeqLike
  135. def prefixLength(p: (Node) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  136. def product[B >: Node](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  137. def reduce[A1 >: Node](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  138. def reduceLeft[B >: Node](op: (B, Node) ⇒ B): B

    Definition Classes
    TraversableOnce
  139. def reduceLeftOption[B >: Node](op: (B, Node) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  140. def reduceOption[A1 >: Node](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  141. def reduceRight[B >: Node](op: (Node, B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  142. def reduceRightOption[B >: Node](op: (Node, B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  143. def repr: NodeSeq

    Definition Classes
    TraversableLike → GenTraversableLike
  144. def reverse: NodeSeq

    Definition Classes
    SeqLike → GenSeqLike
  145. def reverseIterator: collection.Iterator[Node]

    Definition Classes
    SeqLike
  146. def reverseMap[B, That](f: (Node) ⇒ B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  147. def reversed: List[Node]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  148. def runWith[U](action: (Node) ⇒ U): (Int) ⇒ Boolean

    Definition Classes
    PartialFunction
  149. def sameElements[B >: Node](that: GenIterable[B]): Boolean

    Definition Classes
    IterableLike → GenIterableLike
  150. def scan[B >: Node, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  151. def scanLeft[B, That](z: B)(op: (B, Node) ⇒ B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  152. def scanRight[B, That](z: B)(op: (Node, B) ⇒ B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  153. def segmentLength(p: (Node) ⇒ Boolean, from: Int): Int

    Definition Classes
    SeqLike → GenSeqLike
  154. def seq: collection.immutable.Seq[Node]

    Definition Classes
    Seq → Seq → GenSeq → GenSeqLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  155. def size: Int

    Definition Classes
    SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  156. def slice(from: Int, until: Int): NodeSeq

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  157. def sliding(size: Int, step: Int): collection.Iterator[NodeSeq]

    Definition Classes
    IterableLike
  158. def sliding(size: Int): collection.Iterator[NodeSeq]

    Definition Classes
    IterableLike
  159. def sortBy[B](f: (Node) ⇒ B)(implicit ord: math.Ordering[B]): NodeSeq

    Definition Classes
    SeqLike
  160. def sortWith(lt: (Node, Node) ⇒ Boolean): NodeSeq

    Definition Classes
    SeqLike
  161. def sorted[B >: Node](implicit ord: math.Ordering[B]): NodeSeq

    Definition Classes
    SeqLike
  162. def span(p: (Node) ⇒ Boolean): (NodeSeq, NodeSeq)

    Definition Classes
    TraversableLike → GenTraversableLike
  163. def splitAt(n: Int): (NodeSeq, NodeSeq)

    Definition Classes
    TraversableLike → GenTraversableLike
  164. var standAlone: Option[Boolean]

    An indication of the standalone status of the document, either true or false.

    An indication of the standalone status of the document, either true or false. This property is derived from the optional standalone document declaration in the XML declaration at the beginning of the document entity, and has no value (None) if there is no standalone document declaration.

  165. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Definition Classes
    SeqLike → GenSeqLike
  166. def startsWith[B](that: GenSeq[B]): Boolean

    Definition Classes
    GenSeqLike
  167. def strict_!=(other: Equality): Boolean

    Definition Classes
    Equality
  168. def strict_==(other: Equality): Boolean

    Definition Classes
    NodeSeqEquality
  169. def stringPrefix: String

    Definition Classes
    TraversableLike → GenTraversableLike
  170. def sum[B >: Node](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  171. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  172. def tail: NodeSeq

    Definition Classes
    TraversableLike → GenTraversableLike
  173. def tails: collection.Iterator[NodeSeq]

    Definition Classes
    TraversableLike
  174. def take(n: Int): NodeSeq

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  175. def takeRight(n: Int): NodeSeq

    Definition Classes
    IterableLike
  176. def takeWhile(p: (Node) ⇒ Boolean): NodeSeq

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  177. def text: String

    Definition Classes
    NodeSeq
  178. def theSeq: Seq[Node]

    Definition Classes
    DocumentNodeSeq
  179. def thisCollection: collection.Seq[Node]

    Attributes
    protected[this]
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  180. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Node, Col[Node]]): Col[Node]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  181. def toArray[B >: Node](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  182. def toBuffer[B >: Node]: Buffer[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  183. def toCollection(repr: NodeSeq): collection.Seq[Node]

    Attributes
    protected[this]
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  184. def toIndexedSeq: collection.immutable.IndexedSeq[Node]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  185. def toIterable: collection.Iterable[Node]

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  186. def toIterator: collection.Iterator[Node]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  187. def toList: List[Node]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  188. def toMap[T, U](implicit ev: <:<[Node, (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  189. def toParArray: ParArray[Node]

    Implicit information
    This member is added by an implicit conversion from Document to TraversableOps[Node] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  190. def toSeq: collection.immutable.Seq[Node]

    Definition Classes
    Seq → SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  191. def toSet[B >: Node]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  192. def toStream: collection.immutable.Stream[Node]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  193. def toString(): String

    Definition Classes
    NodeSeq → SeqLike → Function1 → TraversableLike → AnyRef → Any
  194. def toTraversable: collection.Traversable[Node]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  195. def toVector: Vector[Node]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  196. def transpose[B](implicit asTraversable: (Node) ⇒ GenTraversableOnce[B]): collection.immutable.Seq[collection.immutable.Seq[B]]

    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  197. def union[B >: Node, That](that: GenSeq[B])(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  198. def unparsedEntities: Seq[EntityDecl]

    An unordered set of unparsed entity information items, one for each unparsed entity declared in the DTD.

  199. def unzip[A1, A2](implicit asPair: (Node) ⇒ (A1, A2)): (collection.immutable.Seq[A1], collection.immutable.Seq[A2])

    Definition Classes
    GenericTraversableTemplate
  200. 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
    GenericTraversableTemplate
  201. def updated[B >: Node, That](index: Int, elem: B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  202. var version: Option[String]

    A string representing the XML version of the document.

    A string representing the XML version of the document. This property is derived from the XML declaration optionally present at the beginning of the document entity, and has no value (None) if there is no XML declaration.

  203. def view(from: Int, until: Int): SeqView[Node, NodeSeq]

    Definition Classes
    SeqLike → IterableLike → TraversableLike
  204. def view: SeqView[Node, NodeSeq]

    Definition Classes
    SeqLike → IterableLike → TraversableLike
  205. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  206. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  207. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  208. def withFilter(p: (Node) ⇒ Boolean): FilterMonadic[Node, NodeSeq]

    Definition Classes
    TraversableLike → FilterMonadic
  209. final def xml_!=(other: Any): Boolean

    Definition Classes
    Equality
  210. final def xml_==(other: Any): Boolean

    Definition Classes
    Equality
  211. def xml_sameElements[A](that: Iterable[A]): Boolean

    Definition Classes
    NodeSeq
  212. def zip[A1 >: Node, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[NodeSeq, (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  213. def zipAll[B, A1 >: Node, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[NodeSeq, (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  214. def zipWithIndex[A1 >: Node, That](implicit bf: CanBuildFrom[NodeSeq, (A1, Int), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  215. def [B](y: B): (Document, B)

    Implicit information
    This member is added by an implicit conversion from Document to ArrowAssoc[Document] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def ++[B >: Node, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).++(that)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
  2. def ++:[B >: Node, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).++:(that)(bf)
    Definition Classes
    TraversableLike
  3. def ++:[B >: Node, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).++:(that)(bf)
    Definition Classes
    TraversableLike
  4. def +:[B >: Node, That](elem: B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).+:(elem)(bf)
    Definition Classes
    SeqLike → GenSeqLike
  5. def /:[B](z: B)(op: (B, Node) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq)./:(z)(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  6. def :+[B >: Node, That](elem: B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).:+(elem)(bf)
    Definition Classes
    SeqLike → GenSeqLike
  7. def :\[B](z: B)(op: (Node, B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).:\(z)(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  8. 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 elements that are labelled with "foo";
    • \ "_" to get a list of all elements (wildcard);
    • ns \ "@foo" to get the unprefixed attribute "foo";
    • ns \ "@{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.

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).\(that)
    Definition Classes
    NodeSeq
  9. 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";
    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).\@(attributeName)
    Definition Classes
    NodeSeq
  10. 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";
    • \\ "_" to get a list of all elements (wildcard);
    • ns \\ "@foo" to get the unprefixed attribute "foo";
    • ns \\ "@{uri}foo" to get each 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.

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).\\(that)
    Definition Classes
    NodeSeq
  11. def addString(b: StringBuilder): StringBuilder

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).addString(b)
    Definition Classes
    TraversableOnce
  12. def addString(b: StringBuilder, sep: String): StringBuilder

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).addString(b, sep)
    Definition Classes
    TraversableOnce
  13. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  14. def aggregate[B](z: ⇒ B)(seqop: (B, Node) ⇒ B, combop: (B, B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).aggregate(z)(seqop, combop)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  15. def andThen[C](k: (Node) ⇒ C): PartialFunction[Int, C]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).andThen(k)
    Definition Classes
    PartialFunction → Function1
  16. def apply(f: (Node) ⇒ Boolean): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).apply(f)
    Definition Classes
    NodeSeq
  17. def apply(i: Int): Node

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).apply(i)
    Definition Classes
    NodeSeq → SeqLike → GenSeqLike → Function1
  18. def applyOrElse[A1 <: Int, B1 >: Node](x: A1, default: (A1) ⇒ B1): B1

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).applyOrElse(x, default)
    Definition Classes
    PartialFunction
  19. 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.

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).canEqual(other)
    Definition Classes
    NodeSeqEquality → IterableLike → Equals
  20. def collect[B, That](pf: PartialFunction[Node, B])(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).collect(pf)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
  21. def collectFirst[B](pf: PartialFunction[Node, B]): Option[B]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).collectFirst(pf)
    Definition Classes
    TraversableOnce
  22. def combinations(n: Int): collection.Iterator[NodeSeq]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).combinations(n)
    Definition Classes
    SeqLike
  23. def companion: GenericCompanion[collection.immutable.Seq]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).companion
    Definition Classes
    Seq → Seq → GenSeq → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  24. def compose[A](g: (A) ⇒ Int): (A) ⇒ Node

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).compose(g)
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  25. def contains[A1 >: Node](elem: A1): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).contains(elem)
    Definition Classes
    SeqLike
  26. def containsSlice[B](that: GenSeq[B]): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).containsSlice(that)
    Definition Classes
    SeqLike
  27. def copyToArray[B >: Node](xs: Array[B], start: Int, len: Int): Unit

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).copyToArray(xs, start, len)
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  28. def copyToArray[B >: Node](xs: Array[B]): Unit

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).copyToArray(xs)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  29. def copyToArray[B >: Node](xs: Array[B], start: Int): Unit

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).copyToArray(xs, start)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  30. def copyToBuffer[B >: Node](dest: Buffer[B]): Unit

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).copyToBuffer(dest)
    Definition Classes
    TraversableOnce
  31. def corresponds[B](that: GenSeq[B])(p: (Node, B) ⇒ Boolean): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).corresponds(that)(p)
    Definition Classes
    SeqLike → GenSeqLike
  32. def count(p: (Node) ⇒ Boolean): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).count(p)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  33. def diff[B >: Node](that: GenSeq[B]): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).diff(that)
    Definition Classes
    SeqLike → GenSeqLike
  34. def distinct: NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).distinct
    Definition Classes
    SeqLike → GenSeqLike
  35. def drop(n: Int): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).drop(n)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  36. def dropRight(n: Int): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).dropRight(n)
    Definition Classes
    IterableLike
  37. def dropWhile(p: (Node) ⇒ Boolean): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).dropWhile(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  38. def endsWith[B](that: GenSeq[B]): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).endsWith(that)
    Definition Classes
    SeqLike → GenSeqLike
  39. def equals(other: Any): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).equals(other)
    Definition Classes
    Equality → Equals → AnyRef → Any
  40. def exists(p: (Node) ⇒ Boolean): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).exists(p)
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  41. def filter(p: (Node) ⇒ Boolean): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).filter(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  42. def filter(p: (Node) ⇒ Boolean): collection.TraversableOnce[Node]

    Implicit information
    This member is added by an implicit conversion from Document to MonadOps[Node] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: MonadOps[Node]).filter(p)
    Definition Classes
    MonadOps
  43. def filterNot(p: (Node) ⇒ Boolean): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).filterNot(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  44. def find(p: (Node) ⇒ Boolean): Option[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).find(p)
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  45. def flatMap[B, That](f: (Node) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).flatMap(f)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  46. def flatMap[B](f: (Node) ⇒ GenTraversableOnce[B]): collection.TraversableOnce[B]

    Implicit information
    This member is added by an implicit conversion from Document to MonadOps[Node] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: MonadOps[Node]).flatMap(f)
    Definition Classes
    MonadOps
  47. def flatten[B](implicit asTraversable: (Node) ⇒ GenTraversableOnce[B]): collection.immutable.Seq[B]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).flatten(asTraversable)
    Definition Classes
    GenericTraversableTemplate
  48. def flatten: collection.Iterator[Node]

    Implicit information
    This member is added by an implicit conversion from Document to FlattenOps[Node] performed by method flattenTraversableOnce in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: FlattenOps[Node]).flatten
    Definition Classes
    FlattenOps
  49. def fold[A1 >: Node](z: A1)(op: (A1, A1) ⇒ A1): A1

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).fold(z)(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  50. def foldLeft[B](z: B)(op: (B, Node) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).foldLeft(z)(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  51. def foldRight[B](z: B)(op: (Node, B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).foldRight(z)(op)
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  52. def forall(p: (Node) ⇒ Boolean): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).forall(p)
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  53. def foreach[U](f: (Node) ⇒ U): Unit

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).foreach(f)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  54. def genericBuilder[B]: Builder[B, collection.immutable.Seq[B]]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).genericBuilder
    Definition Classes
    GenericTraversableTemplate
  55. def groupBy[K](f: (Node) ⇒ K): Map[K, NodeSeq]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).groupBy(f)
    Definition Classes
    TraversableLike → GenTraversableLike
  56. def grouped(size: Int): collection.Iterator[NodeSeq]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).grouped(size)
    Definition Classes
    IterableLike
  57. def hasDefiniteSize: Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).hasDefiniteSize
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  58. 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.

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).hashCode()
    Definition Classes
    Equality → AnyRef → Any
  59. def head: Node

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).head
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  60. def headOption: Option[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).headOption
    Definition Classes
    TraversableLike → GenTraversableLike
  61. def indexOf[B >: Node](elem: B, from: Int): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).indexOf(elem, from)
    Definition Classes
    GenSeqLike
  62. def indexOf[B >: Node](elem: B): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).indexOf(elem)
    Definition Classes
    GenSeqLike
  63. def indexOfSlice[B >: Node](that: GenSeq[B], from: Int): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).indexOfSlice(that, from)
    Definition Classes
    SeqLike
  64. def indexOfSlice[B >: Node](that: GenSeq[B]): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).indexOfSlice(that)
    Definition Classes
    SeqLike
  65. def indexWhere(p: (Node) ⇒ Boolean, from: Int): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).indexWhere(p, from)
    Definition Classes
    SeqLike → GenSeqLike
  66. def indexWhere(p: (Node) ⇒ Boolean): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).indexWhere(p)
    Definition Classes
    GenSeqLike
  67. def indices: collection.immutable.Range

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).indices
    Definition Classes
    SeqLike
  68. def init: NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).init
    Definition Classes
    TraversableLike → GenTraversableLike
  69. def inits: collection.Iterator[NodeSeq]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).inits
    Definition Classes
    TraversableLike
  70. def intersect[B >: Node](that: GenSeq[B]): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).intersect(that)
    Definition Classes
    SeqLike → GenSeqLike
  71. def isDefinedAt(idx: Int): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  72. def isEmpty: Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).isEmpty
    Definition Classes
    SeqLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  73. final def isTraversableAgain: Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).isTraversableAgain
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  74. def iterator: collection.Iterator[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).iterator
    Definition Classes
    NodeSeq → IterableLike → GenIterableLike
  75. def last: Node

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).last
    Definition Classes
    TraversableLike → GenTraversableLike
  76. def lastIndexOf[B >: Node](elem: B, end: Int): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).lastIndexOf(elem, end)
    Definition Classes
    GenSeqLike
  77. def lastIndexOf[B >: Node](elem: B): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).lastIndexOf(elem)
    Definition Classes
    GenSeqLike
  78. def lastIndexOfSlice[B >: Node](that: GenSeq[B], end: Int): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).lastIndexOfSlice(that, end)
    Definition Classes
    SeqLike
  79. def lastIndexOfSlice[B >: Node](that: GenSeq[B]): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).lastIndexOfSlice(that)
    Definition Classes
    SeqLike
  80. def lastIndexWhere(p: (Node) ⇒ Boolean, end: Int): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).lastIndexWhere(p, end)
    Definition Classes
    SeqLike → GenSeqLike
  81. def lastIndexWhere(p: (Node) ⇒ Boolean): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).lastIndexWhere(p)
    Definition Classes
    GenSeqLike
  82. def lastOption: Option[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).lastOption
    Definition Classes
    TraversableLike → GenTraversableLike
  83. def length: Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).length
    Definition Classes
    NodeSeq → SeqLike → GenSeqLike
  84. def lengthCompare(len: Int): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).lengthCompare(len)
    Definition Classes
    SeqLike
  85. def lift: (Int) ⇒ Option[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).lift
    Definition Classes
    PartialFunction
  86. def map[B, That](f: (Node) ⇒ B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).map(f)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  87. def map[B](f: (Node) ⇒ B): collection.TraversableOnce[B]

    Implicit information
    This member is added by an implicit conversion from Document to MonadOps[Node] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: MonadOps[Node]).map(f)
    Definition Classes
    MonadOps
  88. def max[B >: Node](implicit cmp: Ordering[B]): Node

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).max(cmp)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def maxBy[B](f: (Node) ⇒ B)(implicit cmp: Ordering[B]): Node

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).maxBy(f)(cmp)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  90. def min[B >: Node](implicit cmp: Ordering[B]): Node

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).min(cmp)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def minBy[B](f: (Node) ⇒ B)(implicit cmp: Ordering[B]): Node

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).minBy(f)(cmp)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def mkString: String

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).mkString
    Definition Classes
    TraversableOnce → GenTraversableOnce
  93. def mkString(sep: String): String

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).mkString(sep)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def mkString(start: String, sep: String, end: String): String

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).mkString(start, sep, end)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def nonEmpty: Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).nonEmpty
    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def orElse[A1 <: Int, B1 >: Node](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).orElse(that)
    Definition Classes
    PartialFunction
  97. def padTo[B >: Node, That](len: Int, elem: B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).padTo(len, elem)(bf)
    Definition Classes
    SeqLike → GenSeqLike
  98. def par: ParSeq[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).par
    Definition Classes
    Parallelizable
  99. def partition(p: (Node) ⇒ Boolean): (NodeSeq, NodeSeq)

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).partition(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  100. def patch[B >: Node, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).patch(from, patch, replaced)(bf)
    Definition Classes
    SeqLike → GenSeqLike
  101. def permutations: collection.Iterator[NodeSeq]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).permutations
    Definition Classes
    SeqLike
  102. def prefixLength(p: (Node) ⇒ Boolean): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).prefixLength(p)
    Definition Classes
    GenSeqLike
  103. def product[B >: Node](implicit num: Numeric[B]): B

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).product(num)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def reduce[A1 >: Node](op: (A1, A1) ⇒ A1): A1

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).reduce(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. def reduceLeft[B >: Node](op: (B, Node) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).reduceLeft(op)
    Definition Classes
    TraversableOnce
  106. def reduceLeftOption[B >: Node](op: (B, Node) ⇒ B): Option[B]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).reduceLeftOption(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. def reduceOption[A1 >: Node](op: (A1, A1) ⇒ A1): Option[A1]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).reduceOption(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. def reduceRight[B >: Node](op: (Node, B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).reduceRight(op)
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  109. def reduceRightOption[B >: Node](op: (Node, B) ⇒ B): Option[B]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).reduceRightOption(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  110. def repr: NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).repr
    Definition Classes
    TraversableLike → GenTraversableLike
  111. def reverse: NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).reverse
    Definition Classes
    SeqLike → GenSeqLike
  112. def reverseIterator: collection.Iterator[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).reverseIterator
    Definition Classes
    SeqLike
  113. def reverseMap[B, That](f: (Node) ⇒ B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).reverseMap(f)(bf)
    Definition Classes
    SeqLike → GenSeqLike
  114. def runWith[U](action: (Node) ⇒ U): (Int) ⇒ Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).runWith(action)
    Definition Classes
    PartialFunction
  115. def sameElements[B >: Node](that: GenIterable[B]): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).sameElements(that)
    Definition Classes
    IterableLike → GenIterableLike
  116. def scan[B >: Node, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).scan(z)(op)(cbf)
    Definition Classes
    TraversableLike → GenTraversableLike
  117. def scanLeft[B, That](z: B)(op: (B, Node) ⇒ B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).scanLeft(z)(op)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
  118. def scanRight[B, That](z: B)(op: (Node, B) ⇒ B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).scanRight(z)(op)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  119. def segmentLength(p: (Node) ⇒ Boolean, from: Int): Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).segmentLength(p, from)
    Definition Classes
    SeqLike → GenSeqLike
  120. def seq: collection.immutable.Seq[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).seq
    Definition Classes
    Seq → Seq → GenSeq → GenSeqLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  121. def size: Int

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).size
    Definition Classes
    SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  122. def slice(from: Int, until: Int): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).slice(from, until)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  123. def sliding(size: Int, step: Int): collection.Iterator[NodeSeq]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).sliding(size, step)
    Definition Classes
    IterableLike
  124. def sliding(size: Int): collection.Iterator[NodeSeq]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).sliding(size)
    Definition Classes
    IterableLike
  125. def sortBy[B](f: (Node) ⇒ B)(implicit ord: math.Ordering[B]): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).sortBy(f)(ord)
    Definition Classes
    SeqLike
  126. def sortWith(lt: (Node, Node) ⇒ Boolean): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).sortWith(lt)
    Definition Classes
    SeqLike
  127. def sorted[B >: Node](implicit ord: math.Ordering[B]): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).sorted(ord)
    Definition Classes
    SeqLike
  128. def span(p: (Node) ⇒ Boolean): (NodeSeq, NodeSeq)

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).span(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  129. def splitAt(n: Int): (NodeSeq, NodeSeq)

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).splitAt(n)
    Definition Classes
    TraversableLike → GenTraversableLike
  130. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).startsWith(that, offset)
    Definition Classes
    SeqLike → GenSeqLike
  131. def startsWith[B](that: GenSeq[B]): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).startsWith(that)
    Definition Classes
    GenSeqLike
  132. def strict_!=(other: Equality): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).strict_!=(other)
    Definition Classes
    Equality
  133. def strict_==(other: Equality): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).strict_==(other)
    Definition Classes
    NodeSeqEquality
  134. def stringPrefix: String

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).stringPrefix
    Definition Classes
    TraversableLike → GenTraversableLike
  135. def sum[B >: Node](implicit num: Numeric[B]): B

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).sum(num)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  136. def tail: NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).tail
    Definition Classes
    TraversableLike → GenTraversableLike
  137. def tails: collection.Iterator[NodeSeq]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).tails
    Definition Classes
    TraversableLike
  138. def take(n: Int): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).take(n)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  139. def takeRight(n: Int): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).takeRight(n)
    Definition Classes
    IterableLike
  140. def takeWhile(p: (Node) ⇒ Boolean): NodeSeq

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).takeWhile(p)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  141. def text: String

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).text
    Definition Classes
    NodeSeq
  142. def theSeq: Seq[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).theSeq
    Definition Classes
    NodeSeq
  143. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Node, Col[Node]]): Col[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).to(cbf)
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  144. def toArray[B >: Node](implicit arg0: ClassTag[B]): Array[B]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).toArray(arg0)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  145. def toBuffer[B >: Node]: Buffer[B]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).toBuffer
    Definition Classes
    TraversableOnce → GenTraversableOnce
  146. def toIndexedSeq: collection.immutable.IndexedSeq[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).toIndexedSeq
    Definition Classes
    TraversableOnce → GenTraversableOnce
  147. def toIterable: collection.Iterable[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).toIterable
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  148. def toIterator: collection.Iterator[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).toIterator
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  149. def toList: List[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).toList
    Definition Classes
    TraversableOnce → GenTraversableOnce
  150. def toMap[T, U](implicit ev: <:<[Node, (T, U)]): Map[T, U]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).toMap(ev)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  151. def toSeq: collection.immutable.Seq[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).toSeq
    Definition Classes
    Seq → SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  152. def toSet[B >: Node]: Set[B]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).toSet
    Definition Classes
    TraversableOnce → GenTraversableOnce
  153. def toStream: collection.immutable.Stream[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).toStream
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  154. def toString(): String

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).toString()
    Definition Classes
    NodeSeq → SeqLike → Function1 → TraversableLike → AnyRef → Any
  155. def toTraversable: collection.Traversable[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).toTraversable
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  156. def toVector: Vector[Node]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).toVector
    Definition Classes
    TraversableOnce → GenTraversableOnce
  157. def transpose[B](implicit asTraversable: (Node) ⇒ GenTraversableOnce[B]): collection.immutable.Seq[collection.immutable.Seq[B]]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).transpose(asTraversable)
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  158. def union[B >: Node, That](that: GenSeq[B])(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).union(that)(bf)
    Definition Classes
    SeqLike → GenSeqLike
  159. def unzip[A1, A2](implicit asPair: (Node) ⇒ (A1, A2)): (collection.immutable.Seq[A1], collection.immutable.Seq[A2])

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).unzip(asPair)
    Definition Classes
    GenericTraversableTemplate
  160. def unzip3[A1, A2, A3](implicit asTriple: (Node) ⇒ (A1, A2, A3)): (collection.immutable.Seq[A1], collection.immutable.Seq[A2], collection.immutable.Seq[A3])

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).unzip3(asTriple)
    Definition Classes
    GenericTraversableTemplate
  161. def updated[B >: Node, That](index: Int, elem: B)(implicit bf: CanBuildFrom[NodeSeq, B, That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).updated(index, elem)(bf)
    Definition Classes
    SeqLike → GenSeqLike
  162. def view(from: Int, until: Int): SeqView[Node, NodeSeq]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).view(from, until)
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  163. def view: SeqView[Node, NodeSeq]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).view
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  164. def withFilter(p: (Node) ⇒ Boolean): FilterMonadic[Node, NodeSeq]

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).withFilter(p)
    Definition Classes
    TraversableLike → FilterMonadic
  165. def withFilter(p: (Node) ⇒ Boolean): collection.Iterator[Node]

    Implicit information
    This member is added by an implicit conversion from Document to MonadOps[Node] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: MonadOps[Node]).withFilter(p)
    Definition Classes
    MonadOps
  166. final def xml_!=(other: Any): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).xml_!=(other)
    Definition Classes
    Equality
  167. final def xml_==(other: Any): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).xml_==(other)
    Definition Classes
    Equality
  168. def xml_sameElements[A](that: Iterable[A]): Boolean

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).xml_sameElements(that)
    Definition Classes
    NodeSeq
  169. def zip[A1 >: Node, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[NodeSeq, (A1, B), That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).zip(that)(bf)
    Definition Classes
    IterableLike → GenIterableLike
  170. def zipAll[B, A1 >: Node, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[NodeSeq, (A1, B), That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).zipAll(that, thisElem, thatElem)(bf)
    Definition Classes
    IterableLike → GenIterableLike
  171. def zipWithIndex[A1 >: Node, That](implicit bf: CanBuildFrom[NodeSeq, (A1, Int), That]): That

    Implicit information
    This member is added by an implicit conversion from Document to NodeSeq performed by method seqToNodeSeq in scala.xml.NodeSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (document: NodeSeq).zipWithIndex(bf)
    Definition Classes
    IterableLike → GenIterableLike

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from XMLEvent

Inherited from NodeSeq

Inherited from Equality

Inherited from collection.immutable.Seq[Node]

Inherited from collection.immutable.Iterable[Node]

Inherited from collection.immutable.Traversable[Node]

Inherited from Immutable

Inherited from AbstractSeq[Node]

Inherited from collection.Seq[Node]

Inherited from SeqLike[Node, NodeSeq]

Inherited from GenSeq[Node]

Inherited from GenSeqLike[Node, NodeSeq]

Inherited from PartialFunction[Int, Node]

Inherited from (Int) ⇒ Node

Inherited from AbstractIterable[Node]

Inherited from collection.Iterable[Node]

Inherited from IterableLike[Node, NodeSeq]

Inherited from Equals

Inherited from GenIterable[Node]

Inherited from GenIterableLike[Node, NodeSeq]

Inherited from AbstractTraversable[Node]

Inherited from collection.Traversable[Node]

Inherited from GenTraversable[Node]

Inherited from GenericTraversableTemplate[Node, collection.immutable.Seq]

Inherited from TraversableLike[Node, NodeSeq]

Inherited from GenTraversableLike[Node, NodeSeq]

Inherited from Parallelizable[Node, ParSeq[Node]]

Inherited from collection.TraversableOnce[Node]

Inherited from GenTraversableOnce[Node]

Inherited from FilterMonadic[Node, NodeSeq]

Inherited from HasNewBuilder[Node, NodeSeq]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion seqToNodeSeq from Document to NodeSeq

Inherited by implicit conversion traversable2ops from Document to TraversableOps[Node]

Inherited by implicit conversion MonadOps from Document to MonadOps[Node]

Inherited by implicit conversion flattenTraversableOnce from Document to FlattenOps[Node]

Inherited by implicit conversion StringAdd from Document to StringAdd[Document]

Inherited by implicit conversion StringFormat from Document to StringFormat[Document]

Inherited by implicit conversion Ensuring from Document to Ensuring[Document]

Inherited by implicit conversion ArrowAssoc from Document to ArrowAssoc[Document]

Inherited by implicit conversion alternateImplicit from Document to ForceImplicitAmbiguity

Ungrouped