SpecialNode

scala.xml.SpecialNode
abstract class SpecialNode extends Node

SpecialNode is a special XML node which represents either text (PCDATA), a comment, a PI, or an entity ref.

Attributes

Graph
Supertypes
class Node
class NodeSeq
trait Serializable
trait Equality
trait Seq[Node]
trait SeqOps[Node, Seq, NodeSeq]
trait Iterable[Node]
class AbstractSeq[Node]
trait Seq[Node]
trait Equals
trait SeqOps[Node, Seq, NodeSeq]
trait Int => Node
trait Iterable[Node]
class Object
trait Matchable
class Any
Show all
Known subtypes
class Atom[A]
class PCData
class Text
class Unparsed
class Comment
class EntityRef
class ProcInstr
Show all

Members list

Value members

Abstract methods

Append string representation to the given string buffer argument.

Append string representation to the given string buffer argument.

Attributes

Concrete methods

final override def attributes: Null.type

always empty

always empty

Attributes

Definition Classes
final override def child: SpecialNodeChild

always empty

always empty

Attributes

Definition Classes
final override def namespace: Null

always Node.EmptyNamespace - TODO not really: Node.EmptyNamespace is "", but this is null.

always Node.EmptyNamespace - TODO not really: Node.EmptyNamespace is "", but this is null.

Attributes

Definition Classes

Inherited methods

final def ++(suffix: Seq[Node]): NodeSeq

Attributes

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

Attributes

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

Attributes

Definition Classes
Inherited from:
SeqOps
final def +:[B >: Node](elem: B): CC[B]

Attributes

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

Attributes

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

Attributes

Inherited from:
SeqOps
def \(that: String): NodeSeq

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

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

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

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

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

The document order is preserved.

Attributes

Inherited from:
NodeSeq
def \@(attributeName: String): String

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

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

  • that \@ "foo" to get the string text of attribute "foo";

Attributes

Inherited from:
NodeSeq
def \\(that: String): NodeSeq

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

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", includingthis`;
  • this \\ "_" to get a list of all elements (wildcard), including this;
  • this \\ "@foo" to get all unprefixed attributes "foo";
  • this \\ "@{uri}foo" to get all prefixed attribute "pre:foo" whose prefix "pre" is resolved to the namespace "uri".

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

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

The document order is preserved.

Attributes

Inherited from:
NodeSeq

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
IterableOnceOps

Attributes

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

Attributes

Definition Classes
Inherited from:
PartialFunction
def appended(base: Node): NodeSeq

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps

Attributes

Inherited from:
ScalaVersionSpecificNodeSeq (hidden)
override def appendedAll[B >: Node](suffix: IterableOnce[B]): CC[B]

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps
def apply(f: Node => Boolean): NodeSeq

Attributes

Inherited from:
NodeSeq
override def apply(i: Int): Node

Attributes

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

Attributes

Inherited from:
PartialFunction
final def attribute(uri: String, key: String): Option[Seq[Node]]

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

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

Value parameters

key

of queried attribute.

uri

namespace of queried attribute (may not be null).

Attributes

Returns

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

Inherited from:
Node
final def attribute(key: String): Option[Seq[Node]]

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

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

Value parameters

key

of queried attribute.

Attributes

Returns

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

Inherited from:
Node
def buildString(stripComments: Boolean): String

String representation of this node

String representation of this node

Value parameters

stripComments

if true, strips comment nodes from result

Attributes

Inherited from:
Node
override 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.

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
SeqOps

Attributes

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

Attributes

Inherited from:
Function1
def concat(suffix: IterableOnce[Node]): NodeSeq

Attributes

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

Attributes

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

Attributes

Inherited from:
SeqOps

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
IterableOnceOps

Attributes

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

Attributes

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

Attributes

Inherited from:
IterableOnceOps

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.

Attributes

Inherited from:
Node

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

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

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps
def distinct: C

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps

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

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

Attributes

Inherited from:
Node

Attributes

Inherited from:
Node
def drop(n: Int): C

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
def dropWhile(p: Node => Boolean): C

Attributes

Inherited from:
IterableOps

Attributes

Inherited from:
PartialFunction
override def empty: NodeSeq

Attributes

Definition Classes
ScalaVersionSpecificNodeSeq -> IterableOps
Inherited from:
ScalaVersionSpecificNodeSeq (hidden)

Attributes

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

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

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

Any implementation of this method should be an equivalence relation:

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

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

Value parameters

that

the object to compare against this object for equality.

Attributes

Returns

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

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

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
override def filterNot(pred: Node => Boolean): C

Attributes

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

Attributes

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

Attributes

Inherited from:
SeqOps

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
IterableOnceOps

Attributes

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

Attributes

Inherited from:
IterableOnceOps
override def fromSpecific(coll: IterableOnce[Node]): NodeSeq

Attributes

Definition Classes
ScalaVersionSpecificNodeSeq -> IterableOps
Inherited from:
ScalaVersionSpecificNodeSeq (hidden)

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'''.

Value parameters

pre

the prefix whose namespace name we would like to obtain

Attributes

Returns

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

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
IterableOps
override def hashCode: Int

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.

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.

Attributes

Definition Classes
Equality -> Any
Inherited from:
Equality
def head: A

Attributes

Inherited from:
IterableOps
def headOption: Option[A]

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps
def indices: Range

Attributes

Inherited from:
SeqOps
def init: C

Attributes

Inherited from:
IterableOps
def inits: Iterator[C]

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps

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

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

Attributes

Inherited from:
Node

Attributes

Inherited from:
SeqOps
override def isEmpty: Boolean

Attributes

Definition Classes
Inherited from:
SeqOps
override def isTraversableAgain: Boolean

Attributes

Definition Classes
Inherited from:
IterableOps
override def iterableFactory: SeqFactory[Seq]

Attributes

Definition Classes
Inherited from:
Seq
override def iterator: Iterator[Node]

Attributes

Definition Classes
Inherited from:
NodeSeq
def knownSize: Int

Attributes

Inherited from:
IterableOnce
def label: String

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

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

Attributes

Inherited from:
Node
def last: A

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps
def lastOption: Option[A]

Attributes

Inherited from:
IterableOps

Attributes

Inherited from:
Iterable
override def length: Int

Attributes

Definition Classes
Inherited from:
NodeSeq

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps

Attributes

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

Attributes

Inherited from:
PartialFunction
def map(f: Node => Node): NodeSeq

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
IterableOnceOps
final def mkString: String

Attributes

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

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
IterableOnceOps

Appends qualified name of this node to StringBuilder.

Appends qualified name of this node to StringBuilder.

Attributes

Inherited from:
Node

Attributes

Definition Classes
ScalaVersionSpecificNodeSeq -> IterableOps
Inherited from:
ScalaVersionSpecificNodeSeq (hidden)

Attributes

Inherited from:
IterableOnceOps

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

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

Attributes

Inherited from:
Node

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps
override def partition(p: Node => Boolean): (C, C)

Attributes

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

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps

Attributes

Inherited from:
SeqOps
def prefix: String

prefix of this node

prefix of this node

Attributes

Inherited from:
Node
def prepended(base: Node): NodeSeq

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps

Attributes

Inherited from:
ScalaVersionSpecificNodeSeq (hidden)
override def prependedAll[B >: Node](prefix: IterableOnce[B]): CC[B]

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
IterableOnceOps
def reverse: C

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps
protected def reversed: Iterable[A]

Attributes

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

Attributes

Inherited from:
PartialFunction

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
IterableOps

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".

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".

Attributes

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

Attributes

Inherited from:
SeqOps
def search[B >: Node](elem: B)(implicit ord: Ordering[B]): SearchResult

Attributes

Inherited from:
SeqOps

Attributes

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

Attributes

Inherited from:
SeqOps
final override def size: Int

Attributes

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

Attributes

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

Attributes

Definition Classes
Inherited from:
SeqOps
final def sizeIs: SizeCompareOps

Attributes

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

Attributes

Inherited from:
IterableOps

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps
override def span(p: Node => Boolean): (C, C)

Attributes

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

Attributes

Definition Classes
Inherited from:
IterableOps

Attributes

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

Attributes

Inherited from:
IterableOnce
def strict_!=(other: Equality): Boolean

Attributes

Inherited from:
Equality
override def strict_==(other: Equality): Boolean

Attributes

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

Attributes

Inherited from:
IterableOnceOps
def tail: C

Attributes

Inherited from:
IterableOps
def tails: Iterator[C]

Attributes

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

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
def takeWhile(p: Node => Boolean): C

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
override def text: String

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:

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 {
^

Attributes

Definition Classes
Inherited from:
Node
override def theSeq: Seq[Node]

returns a sequence consisting of only this node

returns a sequence consisting of only this node

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
IterableOnceOps
def toList: List[A]

Attributes

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

Attributes

Inherited from:
IterableOnceOps
final override def toSeq: Seq.this.type

Attributes

Definition Classes
Inherited from:
Seq
def toSet[B >: Node]: Set[B]

Attributes

Inherited from:
IterableOnceOps
override def toString: String

Same as toString('''false''').

Same as toString('''false''').

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps
override def updated[B >: Node](index: Int, elem: B): CC[B]

Attributes

Definition Classes
Inherited from:
StrictOptimizedSeqOps
override def view: SeqView[A]

Attributes

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

Attributes

Inherited from:
IterableOps

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

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

Attributes

Inherited from:
Node
final def xml_!=(other: Any): Boolean

Attributes

Inherited from:
Equality
final def xml_==(other: Any): Boolean

Attributes

Inherited from:
Equality
def xml_sameElements[A](that: Iterable[A]): Boolean

Attributes

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

Attributes

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

Attributes

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

Attributes

Definition Classes
Inherited from:
StrictOptimizedIterableOps

Deprecated and Inherited methods

final def /:[B](z: B)(op: (B, Node) => B): B

Attributes

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

Attributes

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

Attributes

Deprecated
[Since version 2.13.0] `aggregate` is not relevant for sequential collections. Use `foldLeft(z)(seqop)` instead.
Inherited from:
IterableOnceOps

Attributes

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

Attributes

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

Attributes

Deprecated
[Since version 2.13.0] Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)
Inherited from:
IterableOnceOps
final def prefixLength(p: Node => Boolean): Int

Attributes

Deprecated
[Since version 2.13.0] Use segmentLength instead of prefixLength
Inherited from:
SeqOps
final def repr: C

Attributes

Deprecated
[Since version 2.13.0] Use coll instead of repr in a collection implementation, use the collection value itself from the outside
Inherited from:
IterableOps
def reverseMap[B](f: Node => B): CC[B]

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Deprecated
[Since version 2.13.0] toTraversable is internal and will be made protected; its name is similar to `toList` or `toSeq`, but it doesn\'t copy non-immutable collections
Inherited from:
IterableOps
final def union[B >: Node](that: Seq[B]): CC[B]

Attributes

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

Attributes

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