Packages

abstract class ComponentTraverser extends FluentProperties[ComponentTraverser] with Properties with Iterable[Component]

Controls the properties of graph traversals with no specific root and allows you to produce the (weakly) connected components by a traversal or call methods like findCycle that work component-wise.

Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ComponentTraverser
  2. Iterable
  3. IterableFactoryDefaults
  4. IterableOps
  5. IterableOnceOps
  6. IterableOnce
  7. Properties
  8. SubgraphProperties
  9. FluentProperties
  10. AnyRef
  11. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def findCycle[U](implicit visitor: (GraphTraversal.InnerElem) => U = Visitor.empty): Option[Cycle]
  2. abstract def iterator: Iterator[Component]
    Definition Classes
    IterableOnce
  3. abstract def ordering: GraphTraversal.ElemOrdering

    If a NodeOrdering or EdgeOrdering different from NoOrdering is supplied neighbor nodes will visited during the traversal according to this ordering.

    If a NodeOrdering or EdgeOrdering different from NoOrdering is supplied neighbor nodes will visited during the traversal according to this ordering.

    Definition Classes
    Properties
  4. abstract def parameters: Parameters

    The properties controlling subsequent traversals.

    The properties controlling subsequent traversals.

    Definition Classes
    Properties
  5. abstract def root: NodeT

    The node where subsequent graph traversals start.

    The node where subsequent graph traversals start.

    Definition Classes
    Properties
  6. abstract def subgraphEdges: GraphTraversal.EdgePredicate

    Restricts subsequent graph traversals to walk only along edges that hold this predicate.

    Restricts subsequent graph traversals to walk only along edges that hold this predicate.

    Definition Classes
    SubgraphProperties
  7. abstract def subgraphNodes: GraphTraversal.NodePredicate

    Restricts subsequent graph traversals to visit only nodes holding this predicate.

    Restricts subsequent graph traversals to visit only nodes holding this predicate.

    Definition Classes
    SubgraphProperties
  8. abstract def topologicalSort[U](implicit visitor: (GraphTraversal.InnerElem) => U = Visitor.empty): TopologicalSort

    See GraphTraversal#topologicalSort.

  9. abstract def topologicalSortByComponent[U](implicit visitor: (GraphTraversal.InnerElem) => U = Visitor.empty): Iterable[TopologicalSort]

    See GraphTraversal#topologicalSortByComponent.

Concrete Value Members

  1. final def ++[B >: Component](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  2. final def addString(b: StringBuilder): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  3. final def addString(b: StringBuilder, sep: String): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  4. def addString(b: StringBuilder, start: String, sep: String, end: String): b.type
    Definition Classes
    IterableOnceOps
  5. def collect[B](pf: PartialFunction[Component, B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  6. def collectFirst[B](pf: PartialFunction[Component, B]): Option[B]
    Definition Classes
    IterableOnceOps
  7. def concat[B >: Component](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  8. def copyToArray[B >: Component](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  9. def copyToArray[B >: Component](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  10. def copyToArray[B >: Component](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  11. def corresponds[B](that: IterableOnce[B])(p: (Component, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  12. def count(p: (Component) => Boolean): Int
    Definition Classes
    IterableOnceOps
  13. def drop(n: Int): Iterable[Component]
    Definition Classes
    IterableOps → IterableOnceOps
  14. def dropRight(n: Int): Iterable[Component]
    Definition Classes
    IterableOps
  15. def dropWhile(p: (Component) => Boolean): Iterable[Component]
    Definition Classes
    IterableOps → IterableOnceOps
  16. def empty: Iterable[Component]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  17. def exists(p: (Component) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  18. def filter(pred: (Component) => Boolean): Iterable[Component]
    Definition Classes
    IterableOps → IterableOnceOps
  19. def filterNot(pred: (Component) => Boolean): Iterable[Component]
    Definition Classes
    IterableOps → IterableOnceOps
  20. def find(p: (Component) => Boolean): Option[Component]
    Definition Classes
    IterableOnceOps
  21. def flatMap[B](f: (Component) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  22. def flatten[B](implicit asIterable: (Component) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  23. def fold[A1 >: Component](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  24. def foldLeft[B](z: B)(op: (B, Component) => B): B
    Definition Classes
    IterableOnceOps
  25. def foldRight[B](z: B)(op: (Component, B) => B): B
    Definition Classes
    IterableOnceOps
  26. def forall(p: (Component) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  27. def foreach[U](f: (Component) => U): Unit
    Definition Classes
    IterableOnceOps
  28. def groupBy[K](f: (Component) => K): Map[K, Iterable[Component]]
    Definition Classes
    IterableOps
  29. def groupMap[K, B](key: (Component) => K)(f: (Component) => B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  30. def groupMapReduce[K, B](key: (Component) => K)(f: (Component) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  31. def grouped(size: Int): Iterator[Iterable[Component]]
    Definition Classes
    IterableOps
  32. def head: Component
    Definition Classes
    IterableOps
  33. def headOption: Option[Component]
    Definition Classes
    IterableOps
  34. def init: Iterable[Component]
    Definition Classes
    IterableOps
  35. def inits: Iterator[Iterable[Component]]
    Definition Classes
    IterableOps
  36. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  37. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  38. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    Iterable → IterableOps
  39. def knownSize: Int
    Definition Classes
    IterableOnce
  40. def last: Component
    Definition Classes
    IterableOps
  41. def lastOption: Option[Component]
    Definition Classes
    IterableOps
  42. def lazyZip[B](that: Iterable[B]): LazyZip2[Component, B, ComponentTraverser.this.type]
    Definition Classes
    Iterable
  43. def map[B](f: (Component) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  44. def max[B >: Component](implicit ord: Ordering[B]): Component
    Definition Classes
    IterableOnceOps
  45. def maxBy[B](f: (Component) => B)(implicit ord: Ordering[B]): Component
    Definition Classes
    IterableOnceOps
  46. def maxByOption[B](f: (Component) => B)(implicit ord: Ordering[B]): Option[Component]
    Definition Classes
    IterableOnceOps
  47. def maxOption[B >: Component](implicit ord: Ordering[B]): Option[Component]
    Definition Classes
    IterableOnceOps
  48. def maxWeight: Option[Weight]

    An optional maximum weight that limits the scope of the traversal or search.

    An optional maximum weight that limits the scope of the traversal or search. If defined and the sum of edge weights between the root of the traversal and a node exceeds the given maximum, that node will no more be visited.

    Definition Classes
    Properties
  49. def min[B >: Component](implicit ord: Ordering[B]): Component
    Definition Classes
    IterableOnceOps
  50. def minBy[B](f: (Component) => B)(implicit ord: Ordering[B]): Component
    Definition Classes
    IterableOnceOps
  51. def minByOption[B](f: (Component) => B)(implicit ord: Ordering[B]): Option[Component]
    Definition Classes
    IterableOnceOps
  52. def minOption[B >: Component](implicit ord: Ordering[B]): Option[Component]
    Definition Classes
    IterableOnceOps
  53. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  54. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  55. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  56. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  57. def partition(p: (Component) => Boolean): (Iterable[Component], Iterable[Component])
    Definition Classes
    IterableOps
  58. def partitionMap[A1, A2](f: (Component) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  59. def product[B >: Component](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  60. def reduce[B >: Component](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  61. def reduceLeft[B >: Component](op: (B, Component) => B): B
    Definition Classes
    IterableOnceOps
  62. def reduceLeftOption[B >: Component](op: (B, Component) => B): Option[B]
    Definition Classes
    IterableOnceOps
  63. def reduceOption[B >: Component](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  64. def reduceRight[B >: Component](op: (Component, B) => B): B
    Definition Classes
    IterableOnceOps
  65. def reduceRightOption[B >: Component](op: (Component, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  66. def scan[B >: Component](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  67. def scanLeft[B](z: B)(op: (B, Component) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  68. def scanRight[B](z: B)(op: (Component, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  69. def size: Int
    Definition Classes
    IterableOnceOps
  70. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  71. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  72. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  73. def slice(from: Int, until: Int): Iterable[Component]
    Definition Classes
    IterableOps → IterableOnceOps
  74. def sliding(size: Int, step: Int): Iterator[Iterable[Component]]
    Definition Classes
    IterableOps
  75. def sliding(size: Int): Iterator[Iterable[Component]]
    Definition Classes
    IterableOps
  76. def span(p: (Component) => Boolean): (Iterable[Component], Iterable[Component])
    Definition Classes
    IterableOps → IterableOnceOps
  77. def splitAt(n: Int): (Iterable[Component], Iterable[Component])
    Definition Classes
    IterableOps → IterableOnceOps
  78. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Component, S]): S
    Definition Classes
    IterableOnce
  79. def sum[B >: Component](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  80. def tail: Iterable[Component]
    Definition Classes
    IterableOps
  81. def tails: Iterator[Iterable[Component]]
    Definition Classes
    IterableOps
  82. def take(n: Int): Iterable[Component]
    Definition Classes
    IterableOps → IterableOnceOps
  83. def takeRight(n: Int): Iterable[Component]
    Definition Classes
    IterableOps
  84. def takeWhile(p: (Component) => Boolean): Iterable[Component]
    Definition Classes
    IterableOps → IterableOnceOps
  85. def tapEach[U](f: (Component) => U): Iterable[Component]
    Definition Classes
    IterableOps → IterableOnceOps
  86. def to[C1](factory: Factory[Component, C1]): C1
    Definition Classes
    IterableOnceOps
  87. def toArray[B >: Component](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  88. final def toBuffer[B >: Component]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  89. def toIndexedSeq: IndexedSeq[Component]
    Definition Classes
    IterableOnceOps
  90. final def toInnerElemTraverser(root: NodeT): InnerElemTraverser
    Definition Classes
    FluentProperties
  91. def toList: List[Component]
    Definition Classes
    IterableOnceOps
  92. def toMap[K, V](implicit ev: <:<[Component, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  93. def toSeq: Seq[Component]
    Definition Classes
    IterableOnceOps
  94. def toSet[B >: Component]: Set[B]
    Definition Classes
    IterableOnceOps
  95. def toString(): String
    Definition Classes
    Iterable → AnyRef → Any
  96. def toVector: Vector[Component]
    Definition Classes
    IterableOnceOps
  97. def transpose[B](implicit asIterable: (Component) => Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  98. def unzip[A1, A2](implicit asPair: (Component) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  99. def unzip3[A1, A2, A3](implicit asTriple: (Component) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  100. def view: View[Component]
    Definition Classes
    IterableOps
  101. final def withDirection(direction: Direction): ComponentTraverser

    Creates a new FluentProperties based on this except for an updated direction.

    Creates a new FluentProperties based on this except for an updated direction. Note that methods returning a Cycle or Path accept only Successors.

    Definition Classes
    FluentProperties
  102. def withFilter(p: (Component) => Boolean): WithFilter[Component, Iterable]
    Definition Classes
    IterableOps
  103. final def withKind(kind: Kind): ComponentTraverser

    Creates a new FluentProperties based on this except for an updated kind.

    Creates a new FluentProperties based on this except for an updated kind.

    Definition Classes
    FluentProperties
  104. final def withMaxDepth(maxDepth: Int): ComponentTraverser

    Creates a new FluentProperties based on this except for an updated maxDepth.

    Creates a new FluentProperties based on this except for an updated maxDepth.

    Definition Classes
    FluentProperties
  105. final def withMaxWeight(max: Long): ComponentTraverser

    Creates a new FluentProperties based on this except for an updated maxWeight having the given max and the default weight function returning edge.weight.

    Creates a new FluentProperties based on this except for an updated maxWeight having the given max and the default weight function returning edge.weight.

    Definition Classes
    FluentProperties
  106. final def withMaxWeight[W](max: W, edgeWeight: (GraphTraversal.EdgeT) => W)(implicit arg0: Numeric[W]): ComponentTraverser

    Creates a new FluentProperties based on this except for an updated maxWeight having the given max value and the given weight function.

    Creates a new FluentProperties based on this except for an updated maxWeight having the given max value and the given weight function.

    Definition Classes
    FluentProperties
  107. def withMaxWeight(maxWeight: Option[Weight]): ComponentTraverser

    Creates a new FluentProperties based on this except for an updated maxWeight.

    Creates a new FluentProperties based on this except for an updated maxWeight.

    Definition Classes
    FluentProperties
  108. final def withOrdering(ordering: GraphTraversal.ElemOrdering): ComponentTraverser

    Creates a new FluentProperties based on this except for an updated ordering.

    Creates a new FluentProperties based on this except for an updated ordering.

    Definition Classes
    FluentProperties
  109. final def withParameters(parameters: Parameters): ComponentTraverser

    Creates a new FluentProperties based on this except for an updated parameters.

    Creates a new FluentProperties based on this except for an updated parameters.

    Definition Classes
    FluentProperties
  110. final def withSubgraph(nodes: GraphTraversal.NodePredicate = anyNode, edges: GraphTraversal.EdgePredicate = anyEdge): ComponentTraverser

    Creates a new FluentProperties based on this except for an updated subgraphNodes and/or subgraphEdges.

    Creates a new FluentProperties based on this except for an updated subgraphNodes and/or subgraphEdges.

    Definition Classes
    FluentProperties
  111. def zip[B](that: IterableOnce[B]): Iterable[(Component, B)]
    Definition Classes
    IterableOps
  112. def zipAll[A1 >: Component, B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  113. def zipWithIndex: Iterable[(Component, Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def ++:[B >: Component](that: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  2. def /:[B](z: B)(op: (B, Component) => B): B
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

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

    (Since version 2.13.0) Use foldLeft instead of /:

  4. def :\[B](z: B)(op: (Component, B) => B): B
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

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

    (Since version 2.13.0) Use foldRight instead of :\

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

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

  7. def collectFirst[B](f: PartialFunction[Component, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.collectFirst(...) instead

  8. def companion: IterableFactory[Iterable]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  9. def copyToBuffer(dest: Buffer[Component]): Unit
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.copyToBuffer(...) instead

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

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

  11. def count(f: (Component) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.count(...) instead

  12. def exists(f: (Component) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.exists(...) instead

  13. def filter(f: (Component) => Boolean): Iterator[Component]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.filter(...) instead

  14. def find(p: (Component) => Boolean): Option[Component]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  15. def flatMap[B](f: (Component) => IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.flatMap instead or consider requiring an Iterable

  16. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  17. def foldLeft[B](z: B)(op: (B, Component) => B): B
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  18. def foldRight[B](z: B)(op: (Component, B) => B): B
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  19. def forall(f: (Component) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.forall(...) instead

  20. def foreach[U](f: (Component) => U): Unit
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foreach(...) instead

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

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

  22. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  23. def map[B](f: (Component) => B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.map instead or consider requiring an Iterable

  24. def max(implicit ord: Ordering[Component]): Component
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  25. def maxBy[B](f: (Component) => B)(implicit cmp: Ordering[B]): Component
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.maxBy(...) instead

  26. def min(implicit ord: Ordering[Component]): Component
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  27. def minBy[B](f: (Component) => B)(implicit cmp: Ordering[B]): Component
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.minBy(...) instead

  28. def mkString: String
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  29. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  30. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  31. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  32. def product(implicit num: Numeric[Component]): Component
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  33. def reduce(f: (Component, Component) => Component): Component
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduce(...) instead

  34. def reduceLeft(f: (Component, Component) => Component): Component
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeft(...) instead

  35. def reduceLeftOption(f: (Component, Component) => Component): Option[Component]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeftOption(...) instead

  36. def reduceOption(f: (Component, Component) => Component): Option[Component]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceOption(...) instead

  37. def reduceRight(f: (Component, Component) => Component): Component
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRight(...) instead

  38. def reduceRightOption(f: (Component, Component) => Component): Option[Component]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRightOption(...) instead

  39. final def repr: Iterable[Component]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  40. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  41. def seq: ComponentTraverser.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  42. def size: Int
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  43. def sum(implicit num: Numeric[Component]): Component
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  44. def to[C1](factory: Factory[Component, C1]): C1
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(factory) instead

  45. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  46. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(ArrayBuffer) instead

  47. def toIndexedSeq: IndexedSeq[Component]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  48. final def toIterable: Iterable[Component]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  49. final def toIterable: ComponentTraverser.this.type
    Definition Classes
    Iterable → IterableOps
    Annotations
    @deprecated
    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

  50. def toIterator: Iterator[Component]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

  51. final def toIterator: Iterator[Component]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  52. def toList: List[Component]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(List) instead

  53. def toMap[K, V](implicit ev: <:<[Component, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Map) instead

  54. def toSeq: Seq[Component]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Seq) instead

  55. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Set) instead

  56. def toStream: Stream[Component]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(LazyList) instead

  57. final def toStream: Stream[Component]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  58. final def toTraversable: Traversable[Component]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  59. final def toTraversable: Traversable[Component]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    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

  60. def toVector: Vector[Component]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Vector) instead

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

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

  62. def withFilter(f: (Component) => Boolean): Iterator[Component]
    Implicit
    This member is added by an implicit conversion from ComponentTraverser toIterableOnceExtensionMethods[Component] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (componentTraverser: IterableOnceExtensionMethods[Component]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.withFilter(...) instead