Packages

c

scalax.collection.GraphTraversal

StrongComponentTraverser

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

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StrongComponentTraverser
  2. Iterable
  3. IterableLike
  4. Equals
  5. GenIterable
  6. GenIterableLike
  7. Traversable
  8. GenTraversable
  9. GenericTraversableTemplate
  10. TraversableLike
  11. GenTraversableLike
  12. Parallelizable
  13. TraversableOnce
  14. GenTraversableOnce
  15. FilterMonadic
  16. HasNewBuilder
  17. Properties
  18. SubgraphProperties
  19. FluentProperties
  20. AnyRef
  21. Any
Implicitly
  1. by anyToNode
  2. by CollectionsHaveToParArray
  3. by MonadOps
  4. by ChainingOps
  5. by EdgeAssoc
  6. by any2stringadd
  7. by StringFormat
  8. by Ensuring
  9. by ArrowAssoc
  10. by alternateImplicit
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StrongComponentTraverser()
    Attributes
    protected

Type Members

  1. type Self = Iterable[Component]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike

Abstract Value Members

  1. abstract def iterator: Iterator[Component]
    Definition Classes
    IterableLike → GenIterableLike
  2. abstract def newTraverser: (NodeT, Parameters, GraphTraversal.NodeFilter, GraphTraversal.EdgeFilter, GraphTraversal.ElemOrdering, Option[Weight]) ⇒ StrongComponentTraverser
    Attributes
    protected
    Definition Classes
    FluentProperties
  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.EdgeFilter

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

    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

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to any2stringadd[StrongComponentTraverser] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[B >: Component, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Component], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  5. def ++:[B >: Component, That](that: Traversable[B])(implicit bf: CanBuildFrom[Iterable[Component], B, That]): That
    Definition Classes
    TraversableLike
  6. def ++:[B >: Component, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Component], B, That]): That
    Definition Classes
    TraversableLike
  7. def ->[B](y: B): (StrongComponentTraverser, B)
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to ArrowAssoc[StrongComponentTraverser] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  10. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  11. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  12. def aggregate[B](z: ⇒ B)(seqop: (B, Component) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def canEqual(that: Any): Boolean
    Definition Classes
    IterableLike → Equals
  15. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  16. def collect[B, That](pf: PartialFunction[Component, B])(implicit bf: CanBuildFrom[Iterable[Component], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  17. def collectFirst[B](pf: PartialFunction[Component, B]): Option[B]
    Definition Classes
    TraversableOnce
  18. def companion: GenericCompanion[Iterable]
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  19. def copyToArray[B >: Component](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  20. def copyToArray[B >: Component](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  21. def copyToArray[B >: Component](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. def copyToBuffer[B >: Component](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  23. def count(p: (Component) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  24. def drop(n: Int): Iterable[Component]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  25. def dropRight(n: Int): Iterable[Component]
    Definition Classes
    IterableLike
  26. def dropWhile(p: (Component) ⇒ Boolean): Iterable[Component]
    Definition Classes
    TraversableLike → GenTraversableLike
  27. def ensuring(cond: (StrongComponentTraverser) ⇒ Boolean, msg: ⇒ Any): StrongComponentTraverser
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to Ensuring[StrongComponentTraverser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. def ensuring(cond: (StrongComponentTraverser) ⇒ Boolean): StrongComponentTraverser
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to Ensuring[StrongComponentTraverser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: Boolean, msg: ⇒ Any): StrongComponentTraverser
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to Ensuring[StrongComponentTraverser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: Boolean): StrongComponentTraverser
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to Ensuring[StrongComponentTraverser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  33. def exists(p: (Component) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  34. def filter(p: (Component) ⇒ Boolean): Iterable[Component]
    Definition Classes
    TraversableLike → GenTraversableLike
  35. def filterNot(p: (Component) ⇒ Boolean): Iterable[Component]
    Definition Classes
    TraversableLike → GenTraversableLike
  36. def find(p: (Component) ⇒ Boolean): Option[Component]
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  37. def flatMap[B, That](f: (Component) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Component], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  38. def flatten[B](implicit asTraversable: (Component) ⇒ GenTraversableOnce[B]): Iterable[B]
    Definition Classes
    GenericTraversableTemplate
  39. def fold[A1 >: Component](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  40. def foldLeft[B](z: B)(op: (B, Component) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  41. def foldRight[B](z: B)(op: (Component, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  42. def forall(p: (Component) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  43. def foreach[U](f: (Component) ⇒ U): Unit
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  44. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to StringFormat[StrongComponentTraverser] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  45. def genericBuilder[B]: Builder[B, Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
  46. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  47. def groupBy[K](f: (Component) ⇒ K): Map[K, Iterable[Component]]
    Definition Classes
    TraversableLike → GenTraversableLike
  48. def grouped(size: Int): Iterator[Iterable[Component]]
    Definition Classes
    IterableLike
  49. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  50. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  51. def head: Component
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  52. def headOption: Option[Component]
    Definition Classes
    TraversableLike → GenTraversableLike
  53. def init: Iterable[Component]
    Definition Classes
    TraversableLike → GenTraversableLike
  54. def inits: Iterator[Iterable[Component]]
    Definition Classes
    TraversableLike
  55. def isDefined: Boolean
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to OuterNode[StrongComponentTraverser] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  56. final def isEdge: Boolean
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to OuterNode[StrongComponentTraverser] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  57. def isEmpty: Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  58. def isIn: Boolean
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to OuterNode[StrongComponentTraverser] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  59. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  60. def isNode: Boolean
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to OuterNode[StrongComponentTraverser] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  61. final def isOut: Boolean
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to OuterNode[StrongComponentTraverser] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  62. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  63. def last: Component
    Definition Classes
    TraversableLike → GenTraversableLike
  64. def lastOption: Option[Component]
    Definition Classes
    TraversableLike → GenTraversableLike
  65. def map[B, That](f: (Component) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Component], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  66. def max[B >: Component](implicit cmp: Ordering[B]): Component
    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. def maxBy[B](f: (Component) ⇒ B)(implicit cmp: Ordering[B]): Component
    Definition Classes
    TraversableOnce → GenTraversableOnce
  68. 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
  69. def min[B >: Component](implicit cmp: Ordering[B]): Component
    Definition Classes
    TraversableOnce → GenTraversableOnce
  70. def minBy[B](f: (Component) ⇒ B)(implicit cmp: Ordering[B]): Component
    Definition Classes
    TraversableOnce → GenTraversableOnce
  71. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  72. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  74. val n1: StrongComponentTraverser
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to EdgeAssoc[StrongComponentTraverser] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
  75. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  76. def newBuilder: Builder[Component, Iterable[Component]]
    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  77. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  79. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  80. def par: ParIterable[Component]
    Definition Classes
    Parallelizable
  81. def parCombiner: Combiner[Component, ParIterable[Component]]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  82. def partition(p: (Component) ⇒ Boolean): (Iterable[Component], Iterable[Component])
    Definition Classes
    TraversableLike → GenTraversableLike
  83. def pipe[B](f: (StrongComponentTraverser) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to ChainingOps[StrongComponentTraverser] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  84. def product[B >: Component](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  85. def reduce[A1 >: Component](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def reduceLeft[B >: Component](op: (B, Component) ⇒ B): B
    Definition Classes
    TraversableOnce
  87. def reduceLeftOption[B >: Component](op: (B, Component) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  88. def reduceOption[A1 >: Component](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def reduceRight[B >: Component](op: (Component, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  90. def reduceRightOption[B >: Component](op: (Component, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def repr: Iterable[Component]
    Definition Classes
    TraversableLike → GenTraversableLike
  92. def reversed: List[Component]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  93. def sameElements[B >: Component](that: GenIterable[B]): Boolean
    Definition Classes
    IterableLike → GenIterableLike
  94. def scan[B >: Component, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Iterable[Component], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  95. def scanLeft[B, That](z: B)(op: (B, Component) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Component], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  96. def scanRight[B, That](z: B)(op: (Component, B) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Component], 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.

  97. val self: StrongComponentTraverser
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to ChainingOps[StrongComponentTraverser] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  98. def seq: Iterable[Component]
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  99. def size: Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def sizeHintIfCheap: Int
    Attributes
    protected[scala.collection]
    Definition Classes
    GenTraversableOnce
  101. def slice(from: Int, until: Int): Iterable[Component]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  102. def sliding(size: Int, step: Int): Iterator[Iterable[Component]]
    Definition Classes
    IterableLike
  103. def sliding(size: Int): Iterator[Iterable[Component]]
    Definition Classes
    IterableLike
  104. def span(p: (Component) ⇒ Boolean): (Iterable[Component], Iterable[Component])
    Definition Classes
    TraversableLike → GenTraversableLike
  105. def splitAt(n: Int): (Iterable[Component], Iterable[Component])
    Definition Classes
    TraversableLike → GenTraversableLike
  106. def stringPrefix: String
    Definition Classes
    TraversableLike → GenTraversableLike
  107. def sum[B >: Component](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  109. def tail: Iterable[Component]
    Definition Classes
    TraversableLike → GenTraversableLike
  110. def tails: Iterator[Iterable[Component]]
    Definition Classes
    TraversableLike
  111. def take(n: Int): Iterable[Component]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  112. def takeRight(n: Int): Iterable[Component]
    Definition Classes
    IterableLike
  113. def takeWhile(p: (Component) ⇒ Boolean): Iterable[Component]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  114. def tap[U](f: (StrongComponentTraverser) ⇒ U): StrongComponentTraverser
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to ChainingOps[StrongComponentTraverser] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  115. def thisCollection: Iterable[Component]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  116. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Component, Col[Component]]): Col[Component]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  117. def toArray[B >: Component](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  118. def toBuffer[B >: Component]: Buffer[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. def toCollection(repr: Iterable[Component]): Iterable[Component]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  120. def toIndexedSeq: IndexedSeq[Component]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. final def toInnerElemTraverser(root: NodeT): InnerElemTraverser
    Definition Classes
    FluentProperties
  122. def toIterable: Iterable[Component]
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  123. def toIterator: Iterator[Component]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  124. def toList: List[Component]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def toMap[T, U](implicit ev: <:<[Component, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to CollectionsHaveToParArray[StrongComponentTraverser, T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (StrongComponentTraverser) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  127. def toSeq: Seq[Component]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def toSet[B >: Component]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def toStream: Stream[Component]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  130. def toString(): String
    Definition Classes
    TraversableLike → Any
  131. def toTraversable: Traversable[Component]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  132. def toVector: Vector[Component]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def transpose[B](implicit asTraversable: (Component) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  134. def unzip[A1, A2](implicit asPair: (Component) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    GenericTraversableTemplate
  135. def unzip3[A1, A2, A3](implicit asTriple: (Component) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    GenericTraversableTemplate
  136. val value: StrongComponentTraverser
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to OuterNode[StrongComponentTraverser] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    OuterNodeNodeParam
  137. def view(from: Int, until: Int): IterableView[Component, Iterable[Component]]
    Definition Classes
    IterableLike → TraversableLike
  138. def view: IterableView[Component, Iterable[Component]]
    Definition Classes
    IterableLike → TraversableLike
  139. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  140. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  141. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  142. final def withDirection(direction: Direction): StrongComponentTraverser

    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
  143. def withFilter(p: (Component) ⇒ Boolean): FilterMonadic[Component, Iterable[Component]]
    Definition Classes
    TraversableLike → FilterMonadic
  144. final def withKind(kind: Kind): StrongComponentTraverser

    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
  145. final def withMaxDepth(maxDepth: Int): StrongComponentTraverser

    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
  146. final def withMaxWeight(max: Long): StrongComponentTraverser

    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
  147. final def withMaxWeight[W](max: W, edgeWeight: (GraphTraversal.EdgeT) ⇒ W)(implicit arg0: Numeric[W]): StrongComponentTraverser

    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
  148. def withMaxWeight(maxWeight: Option[Weight]): StrongComponentTraverser

    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
  149. final def withOrdering(ordering: GraphTraversal.ElemOrdering): StrongComponentTraverser

    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
  150. final def withParameters(parameters: Parameters): StrongComponentTraverser

    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
  151. final def withSubgraph(nodes: GraphTraversal.NodeFilter = anyNode, edges: GraphTraversal.EdgeFilter = anyEdge): StrongComponentTraverser

    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
  152. def zip[A1 >: Component, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Iterable[Component], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  153. def zipAll[B, A1 >: Component, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Iterable[Component], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  154. def zipWithIndex[A1 >: Component, That](implicit bf: CanBuildFrom[Iterable[Component], (A1, Int), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  155. def ~[N >: N1](n2: N): UnDiEdge[N]
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to EdgeAssoc[StrongComponentTraverser] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  156. def ~>[N >: N1](n2: N): DiEdge[N]
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to EdgeAssoc[StrongComponentTraverser] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  157. def [B](y: B): (StrongComponentTraverser, B)
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to ArrowAssoc[StrongComponentTraverser] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def filter(p: (Component) ⇒ Boolean): TraversableOnce[Component]
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to MonadOps[Component] 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:
    (strongComponentTraverser: MonadOps[Component]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: (Component) ⇒ GenTraversableOnce[B]): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to MonadOps[Component] 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:
    (strongComponentTraverser: MonadOps[Component]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: (Component) ⇒ B): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to MonadOps[Component] 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:
    (strongComponentTraverser: MonadOps[Component]).map(f)
    Definition Classes
    MonadOps
  4. def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to OuterNode[StrongComponentTraverser] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (strongComponentTraverser: OuterNode[StrongComponentTraverser]).stringPrefix
    Definition Classes
    NodeParam
  5. def toString(): String
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to OuterNode[StrongComponentTraverser] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (strongComponentTraverser: OuterNode[StrongComponentTraverser]).toString()
    Definition Classes
    NodeParam → AnyRef → Any
  6. def withFilter(p: (Component) ⇒ Boolean): Iterator[Component]
    Implicit
    This member is added by an implicit conversion from StrongComponentTraverser to MonadOps[Component] 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:
    (strongComponentTraverser: MonadOps[Component]).withFilter(p)
    Definition Classes
    MonadOps

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, Component) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

  2. def :\[B](z: B)(op: (Component, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldRight instead of :\

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

    (Since version ) see corresponding Javadoc for more information.

Inherited from Iterable[Component]

Inherited from Equals

Inherited from GenIterable[Component]

Inherited from Traversable[Component]

Inherited from GenTraversable[Component]

Inherited from TraversableOnce[Component]

Inherited from GenTraversableOnce[Component]

Inherited from HasNewBuilder[Component, Iterable[GraphTraversal.this.Component] @scala.annotation.unchecked.uncheckedVariance]

Inherited from Properties

Inherited from SubgraphProperties

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion anyToNode from StrongComponentTraverser to OuterNode[StrongComponentTraverser]

Inherited by implicit conversion CollectionsHaveToParArray from StrongComponentTraverser to CollectionsHaveToParArray[StrongComponentTraverser, T]

Inherited by implicit conversion MonadOps from StrongComponentTraverser to MonadOps[Component]

Inherited by implicit conversion ChainingOps from StrongComponentTraverser to ChainingOps[StrongComponentTraverser]

Inherited by implicit conversion EdgeAssoc from StrongComponentTraverser to EdgeAssoc[StrongComponentTraverser]

Inherited by implicit conversion any2stringadd from StrongComponentTraverser to any2stringadd[StrongComponentTraverser]

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

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

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

Inherited by implicit conversion alternateImplicit from StrongComponentTraverser to ForceImplicitAmbiguity

Ungrouped