scala.xml

ProcInstr

case class ProcInstr(target: String, proctext: String) extends SpecialNode with Product with Serializable

an XML node for processing instructions (PI)

target

target name of this PI

proctext

text contained in this node, may not contain "?>"

Linear Supertypes
Serializable, java.io.Serializable, Product, SpecialNode, XMLEvent, Node, 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. ProcInstr
  2. Serializable
  3. Serializable
  4. Product
  5. SpecialNode
  6. XMLEvent
  7. Node
  8. NodeSeq
  9. Equality
  10. Seq
  11. Iterable
  12. Traversable
  13. Immutable
  14. AbstractSeq
  15. Seq
  16. SeqLike
  17. GenSeq
  18. GenSeqLike
  19. PartialFunction
  20. Function1
  21. AbstractIterable
  22. Iterable
  23. IterableLike
  24. Equals
  25. GenIterable
  26. GenIterableLike
  27. AbstractTraversable
  28. Traversable
  29. GenTraversable
  30. GenericTraversableTemplate
  31. TraversableLike
  32. GenTraversableLike
  33. Parallelizable
  34. TraversableOnce
  35. GenTraversableOnce
  36. FilterMonadic
  37. HasNewBuilder
  38. AnyRef
  39. 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 ProcInstr(target: String, proctext: String)

    target

    target name of this PI

    proctext

    text contained in this node, may not contain "?>"

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 ProcInstr to StringAdd[ProcInstr] 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): (ProcInstr, B)

    Implicit information
    This member is added by an implicit conversion from ProcInstr to ArrowAssoc[ProcInstr] 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. def andThen[C](k: (Node) ⇒ C): PartialFunction[Int, C]

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

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

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

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

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

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

    Implicit information
    This member is added by an implicit conversion from ProcInstr to TraversableOps[Node] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  29. final def attribute(uri: String, key: String): Option[Seq[Node]]

    Convenience method, looks up a prefixed attribute in attributes of this node.

    Convenience method, looks up a prefixed attribute in attributes of this node. Same as attributes.getValue(uri, this, key)-

    uri

    namespace of queried attribute (may not be null).

    key

    of queried attribute.

    returns

    value of PrefixedAttribute with given namespace and given key, otherwise null.

    Definition Classes
    Node
  30. final def attribute(key: String): Option[Seq[Node]]

    Convenience method, looks up an unprefixed attribute in attributes of this node.

    Convenience method, looks up an unprefixed attribute in attributes of this node. Same as attributes.getValue(key)

    key

    of queried attribute.

    returns

    value of UnprefixedAttribute with given key in attributes, if it exists, otherwise null.

    Definition Classes
    Node
  31. final def attributes: Null.type

    always empty

    always empty

    returns

    all attributes of this node

    Definition Classes
    SpecialNodeNode
  32. def basisForHashCode: Seq[Any]

    Attributes
    protected
    Definition Classes
    NodeNodeSeqEquality
  33. def buildString(sb: StringBuilder): collection.mutable.StringBuilder

    appends "<?" target (" "+text)?+"?>" to this stringbuffer.

    appends "<?" target (" "+text)?+"?>" to this stringbuffer.

    Definition Classes
    ProcInstrSpecialNode
  34. def buildString(stripComments: Boolean): String

    String representation of this node

    String representation of this node

    stripComments

    if true, strips comment nodes from result

    Definition Classes
    Node
  35. 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
    NodeNodeSeqEquality → IterableLike → Equals
  36. final def child: collection.immutable.Nil.type

    always empty

    always empty

    returns

    all children of this node

    Definition Classes
    SpecialNodeNode
  37. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  51. def descendant: List[Node]

    Descendant axis (all descendants of this node, not including node itself) includes all text nodes, element nodes, comments and processing instructions.

    Descendant axis (all descendants of this node, not including node itself) includes all text nodes, element nodes, comments and processing instructions.

    Definition Classes
    Node
  52. def descendant_or_self: List[Node]

    Descendant axis (all descendants of this node, including thisa node) includes all text nodes, element nodes, comments and processing instructions.

    Descendant axis (all descendants of this node, including thisa node) includes all text nodes, element nodes, comments and processing instructions.

    Definition Classes
    Node
  53. def diff[B >: Node](that: GenSeq[B]): NodeSeq

    Definition Classes
    SeqLike → GenSeqLike
  54. def distinct: NodeSeq

    Definition Classes
    SeqLike → GenSeqLike
  55. final def doCollectNamespaces: Boolean

    The logic formerly found in typeTag$, as best I could infer it.

    The logic formerly found in typeTag$, as best I could infer it.

    Definition Classes
    ProcInstrNode
  56. final def doTransform: Boolean

    Definition Classes
    ProcInstrNode
  57. def drop(n: Int): NodeSeq

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

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

    Definition Classes
    TraversableLike → GenTraversableLike
  60. def endsWith[B](that: GenSeq[B]): Boolean

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef → Any
  82. def getNamespace(pre: String): String

    Convenience method, same as scope.getURI(pre) but additionally checks if scope is null.

    Convenience method, same as scope.getURI(pre) but additionally checks if scope is null.

    pre

    the prefix whose namespace name we would like to obtain

    returns

    the namespace if scope != null and prefix was found, else null

    Definition Classes
    Node
  83. def groupBy[K](f: (Node) ⇒ K): Map[K, NodeSeq]

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

    Definition Classes
    IterableLike
  85. def hasDefiniteSize: Boolean

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    SeqLike
  97. def init: NodeSeq

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

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

    Definition Classes
    SeqLike → GenSeqLike
  100. def isAtom: Boolean

    used internally.

    used internally. Atom/Molecule = -1 PI = -2 Comment = -3 EntityRef = -5

    Definition Classes
    Node
  101. def isDefinedAt(idx: Int): Boolean

    Definition Classes
    GenSeqLike
  102. def isEmpty: Boolean

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

    Definition Classes
    Any
  104. def isParIterable: Boolean

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

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

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

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

    Definition Classes
    NodeSeq → IterableLike → GenIterableLike
  109. final def label: String

    label of this node.

    label of this node. I.e. "foo" for <foo/>)

    Definition Classes
    ProcInstrNode
  110. def last: Node

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

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

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

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

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

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

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

    Definition Classes
    TraversableLike → GenTraversableLike
  118. def length: Int

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

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

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

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def mkString: String

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def nameToString(sb: StringBuilder): StringBuilder

    Appends qualified name of this node to StringBuilder.

    Appends qualified name of this node to StringBuilder.

    Definition Classes
    Node
  130. final def namespace: scala.Null

    always Node.

    always Node.EmptyNamespace

    Definition Classes
    SpecialNodeNode
  131. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  132. 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
  133. def nonEmpty: Boolean

    Definition Classes
    TraversableOnce → GenTraversableOnce
  134. def nonEmptyChildren: Seq[Node]

    Children which do not stringify to "" (needed for equality)

    Children which do not stringify to "" (needed for equality)

    Definition Classes
    Node
  135. final def notify(): Unit

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

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

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

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

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

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

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

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

    Definition Classes
    SeqLike
  144. def prefix: String

    prefix of this node

    prefix of this node

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

    Definition Classes
    GenSeqLike
  146. val proctext: String

    text contained in this node, may not contain "?>"

  147. def product[B >: Node](implicit num: Numeric[B]): B

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

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

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  154. def repr: NodeSeq

    Definition Classes
    TraversableLike → GenTraversableLike
  155. def reverse: NodeSeq

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

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

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

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

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

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

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

    Definition Classes
    TraversableLike → GenTraversableLike
  163. 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.

  164. def scope: NamespaceBinding

    method returning the namespace bindings of this node.

    method returning the namespace bindings of this node. by default, this is TopScope, which means there are no namespace bindings except the predefined one for "xml".

    Definition Classes
    Node
  165. def segmentLength(p: (Node) ⇒ Boolean, from: Int): Int

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    TraversableLike → GenTraversableLike
  176. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

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

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

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

    Definition Classes
    NodeNodeSeqEquality
  180. def stringPrefix: String

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

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

    Definition Classes
    AnyRef
  183. def tail: NodeSeq

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

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

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

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

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  188. val target: String

    target name of this PI

  189. def text: String

    Returns a text representation of this node.

    Returns a text representation of this node. Note that this is not equivalent to the XPath node-test called text(), it is rather an implementation of the XPath function string() Martin to Burak: to do: if you make this method abstract, the compiler will now complain if there's no implementation in a subclass. Is this what we want? Note that this would break doc/DocGenator and doc/ModelToXML, with an error message like:

    doc\DocGenerator.scala:1219: error: object creation impossible, since there is a deferred declaration of method text in class Node of type => String which is not implemented in a subclass
    new SpecialNode {
    ^
    Definition Classes
    ProcInstrNodeNodeSeq
  190. def theSeq: Seq[Node]

    returns a sequence consisting of only this node

    returns a sequence consisting of only this node

    Definition Classes
    NodeNodeSeq
  191. def thisCollection: collection.Seq[Node]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Same as toString(false).

    Same as toString(false).

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  208. 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.

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

    Definition Classes
    SeqLike → GenSeqLike
  210. def unzip[A1, A2](implicit asPair: (Node) ⇒ (A1, A2)): (collection.immutable.Seq[A1], collection.immutable.Seq[A2])

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

    Definition Classes
    SeqLike → GenSeqLike
  213. def view(from: Int, until: Int): SeqView[Node, NodeSeq]

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

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

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

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

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

    Definition Classes
    TraversableLike → FilterMonadic
  219. def xmlType(): TypeSymbol

    Returns a type symbol (e.

    Returns a type symbol (e.g. DTD, XSD), default null.

    Definition Classes
    Node
  220. final def xml_!=(other: Any): Boolean

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

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

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

    Definition Classes
    IterableLike → GenIterableLike
  224. 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
  225. def zipWithIndex[A1 >: Node, That](implicit bf: CanBuildFrom[NodeSeq, (A1, Int), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  226. def [B](y: B): (ProcInstr, B)

    Implicit information
    This member is added by an implicit conversion from ProcInstr to ArrowAssoc[ProcInstr] 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).\\(that)
    Definition Classes
    NodeSeq
  11. def addString(b: StringBuilder): StringBuilder

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).apply(f)
    Definition Classes
    NodeSeq
  17. def apply(i: Int): Node

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).combinations(n)
    Definition Classes
    SeqLike
  23. def companion: GenericCompanion[collection.immutable.Seq]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).diff(that)
    Definition Classes
    SeqLike → GenSeqLike
  34. def distinct: NodeSeq

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).distinct
    Definition Classes
    SeqLike → GenSeqLike
  35. def drop(n: Int): NodeSeq

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).dropRight(n)
    Definition Classes
    IterableLike
  37. def dropWhile(p: (Node) ⇒ Boolean): NodeSeq

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).endsWith(that)
    Definition Classes
    SeqLike → GenSeqLike
  39. def equals(other: Any): Boolean

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).flatten(asTraversable)
    Definition Classes
    GenericTraversableTemplate
  48. def flatten: collection.Iterator[Node]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).grouped(size)
    Definition Classes
    IterableLike
  57. def hasDefiniteSize: Boolean

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).hashCode()
    Definition Classes
    Equality → AnyRef → Any
  59. def head: Node

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).head
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  60. def headOption: Option[Node]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).indexWhere(p)
    Definition Classes
    GenSeqLike
  67. def indices: collection.immutable.Range

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).indices
    Definition Classes
    SeqLike
  68. def init: NodeSeq

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).init
    Definition Classes
    TraversableLike → GenTraversableLike
  69. def inits: collection.Iterator[NodeSeq]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).intersect(that)
    Definition Classes
    SeqLike → GenSeqLike
  71. def isDefinedAt(idx: Int): Boolean

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  72. def isEmpty: Boolean

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).isTraversableAgain
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  74. def iterator: collection.Iterator[Node]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).iterator
    Definition Classes
    NodeSeq → IterableLike → GenIterableLike
  75. def last: Node

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).lastIndexWhere(p)
    Definition Classes
    GenSeqLike
  82. def lastOption: Option[Node]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).lastOption
    Definition Classes
    TraversableLike → GenTraversableLike
  83. def length: Int

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).length
    Definition Classes
    NodeSeq → SeqLike → GenSeqLike
  84. def lengthCompare(len: Int): Int

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).lengthCompare(len)
    Definition Classes
    SeqLike
  85. def lift: (Int) ⇒ Option[Node]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).minBy(f)(cmp)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def mkString: String

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).mkString
    Definition Classes
    TraversableOnce → GenTraversableOnce
  93. def mkString(sep: String): String

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).mkString(start, sep, end)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def nonEmpty: Boolean

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).par
    Definition Classes
    Parallelizable
  99. def partition(p: (Node) ⇒ Boolean): (NodeSeq, NodeSeq)

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).permutations
    Definition Classes
    SeqLike
  102. def prefixLength(p: (Node) ⇒ Boolean): Int

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).reduceRightOption(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  110. def repr: NodeSeq

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).repr
    Definition Classes
    TraversableLike → GenTraversableLike
  111. def reverse: NodeSeq

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).reverse
    Definition Classes
    SeqLike → GenSeqLike
  112. def reverseIterator: collection.Iterator[Node]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).startsWith(that)
    Definition Classes
    GenSeqLike
  132. def strict_!=(other: Equality): Boolean

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).strict_!=(other)
    Definition Classes
    Equality
  133. def strict_==(other: Equality): Boolean

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).strict_==(other)
    Definition Classes
    NodeSeqEquality
  134. def stringPrefix: String

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).sum(num)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  136. def tail: NodeSeq

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).tail
    Definition Classes
    TraversableLike → GenTraversableLike
  137. def tails: collection.Iterator[NodeSeq]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).tails
    Definition Classes
    TraversableLike
  138. def take(n: Int): NodeSeq

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).takeRight(n)
    Definition Classes
    IterableLike
  140. def takeWhile(p: (Node) ⇒ Boolean): NodeSeq

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).takeWhile(p)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  141. def text: String

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).text
    Definition Classes
    NodeSeq
  142. def theSeq: Seq[Node]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).toBuffer
    Definition Classes
    TraversableOnce → GenTraversableOnce
  146. def toIndexedSeq: collection.immutable.IndexedSeq[Node]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).toIndexedSeq
    Definition Classes
    TraversableOnce → GenTraversableOnce
  147. def toIterable: collection.Iterable[Node]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).toIterable
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  148. def toIterator: collection.Iterator[Node]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).toIterator
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  149. def toList: List[Node]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).toSet
    Definition Classes
    TraversableOnce → GenTraversableOnce
  153. def toStream: collection.immutable.Stream[Node]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: NodeSeq).toStream
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  154. def toString(): String

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).toTraversable
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  156. def toVector: Vector[Node]

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).xml_!=(other)
    Definition Classes
    Equality
  167. final def xml_==(other: Any): Boolean

    Implicit information
    This member is added by an implicit conversion from ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: 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 ProcInstr 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:
    (procInstr: NodeSeq).zipWithIndex(bf)
    Definition Classes
    IterableLike → GenIterableLike

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from Product

Inherited from SpecialNode

Inherited from XMLEvent

Inherited from Node

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 ProcInstr to NodeSeq

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

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

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

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

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

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

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

Inherited by implicit conversion alternateImplicit from ProcInstr to ForceImplicitAmbiguity

Ungrouped