scalax.collection.GraphTraversalImpl

CycleBuffer

class CycleBuffer extends PathBuffer with Cycle

Linear Supertypes
GraphTraversalImpl.Cycle, PathBuffer, GraphTraversalImpl.Path, Iterable[GraphParamOut[N, E]], IterableLike[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]], Equals, GenIterable[GraphParamOut[N, E]], GenIterableLike[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]], Traversable[GraphParamOut[N, E]], GenTraversable[GraphParamOut[N, E]], GenericTraversableTemplate[GraphParamOut[N, E], Iterable], TraversableLike[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]], GenTraversableLike[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]], Parallelizable[GraphParamOut[N, E], ParIterable[GraphParamOut[N, E]]], TraversableOnce[GraphParamOut[N, E]], GenTraversableOnce[GraphParamOut[N, E]], FilterMonadic[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]], HasNewBuilder[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CycleBuffer
  2. Cycle
  3. PathBuffer
  4. Path
  5. Iterable
  6. IterableLike
  7. Equals
  8. GenIterable
  9. GenIterableLike
  10. Traversable
  11. GenTraversable
  12. GenericTraversableTemplate
  13. TraversableLike
  14. GenTraversableLike
  15. Parallelizable
  16. TraversableOnce
  17. GenTraversableOnce
  18. FilterMonadic
  19. HasNewBuilder
  20. AnyRef
  21. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CycleBuffer(nodeFilter: (NodeT) ⇒ Boolean = GraphTraversalImpl.this.anyNode, edgeFilter: (GraphTraversalImpl.EdgeT) ⇒ Boolean = GraphTraversalImpl.this.anyEdge)

Type Members

  1. type Self = Iterable[GraphParamOut[N, E]]

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

    Definition Classes
    TraversableLike

Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. def ++[B >: GraphParamOut[N, E], That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[GraphParamOut[N, E]], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  5. def ++:[B >: GraphParamOut[N, E], That](that: Traversable[B])(implicit bf: CanBuildFrom[Iterable[GraphParamOut[N, E]], B, That]): That

    Definition Classes
    TraversableLike
  6. def ++:[B >: GraphParamOut[N, E], That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[GraphParamOut[N, E]], B, That]): That

    Definition Classes
    TraversableLike
  7. def +=:(node: NodeT, selectEdge: (NodeT, NodeT, (GraphTraversalImpl.EdgeT) ⇒ Boolean) ⇒ GraphTraversalImpl.EdgeT): CycleBuffer.this.type

    Definition Classes
    PathBuffer
  8. def +=:(node: NodeT, selectEdge: (NodeT, NodeT) ⇒ GraphTraversalImpl.EdgeT): CycleBuffer.this.type

    Prepends a pair of (node, edge) to this buffer.

    Prepends a pair of (node, edge) to this buffer. The edge is selected calling selectEdge with the arguments node and startNode of the correct buffer.

    Definition Classes
    PathBuffer
  9. def +=:(node: NodeT, edge: GraphTraversalImpl.EdgeT): CycleBuffer.this.type

    Prepends a (node, edge) pair to this buffer.

    Prepends a (node, edge) pair to this buffer.

    Definition Classes
    PathBuffer
  10. final def +=:(edge: GraphTraversalImpl.EdgeT): PathBuffer

    Prepends an edge to this buffer.

    Prepends an edge to this buffer. The caller is responsible for correct order.

    Definition Classes
    PathBuffer
    Annotations
    @inline()
  11. final def +=:(node: NodeT): PathBuffer

    Prepends a node to this buffer.

    Prepends a node to this buffer. The caller is responsible for correct order.

    Definition Classes
    PathBuffer
    Annotations
    @inline()
  12. def /:[B](z: B)(op: (B, GraphParamOut[N, E]) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  13. def :\[B](z: B)(op: (GraphParamOut[N, E], B) ⇒ B): B

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

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

    Definition Classes
    Any
  16. def addString(b: StringBuilder): StringBuilder

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

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

    Definition Classes
    TraversableOnce
  19. def aggregate[B](z: B)(seqop: (B, GraphParamOut[N, E]) ⇒ B, combop: (B, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  20. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  21. val buf: ListBuffer[GraphParamOut[N, E]]

    Definition Classes
    PathBuffer
  22. def canEqual(that: Any): Boolean

    Definition Classes
    PathBuffer → IterableLike → Equals
  23. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  24. def collect[B, That](pf: PartialFunction[GraphParamOut[N, E], B])(implicit bf: CanBuildFrom[Iterable[GraphParamOut[N, E]], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  25. def collectFirst[B](pf: PartialFunction[GraphParamOut[N, E], B]): Option[B]

    Definition Classes
    TraversableOnce
  26. def companion: GenericCompanion[Iterable]

    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  27. def copyToArray[B >: GraphParamOut[N, E]](xs: Array[B], start: Int, len: Int): Unit

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  28. def copyToArray[B >: GraphParamOut[N, E]](xs: Array[B]): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  29. def copyToArray[B >: GraphParamOut[N, E]](xs: Array[B], start: Int): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  30. def copyToBuffer[B >: GraphParamOut[N, E]](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  31. def count(p: (GraphParamOut[N, E]) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  32. def dependentCycles(nodeFilter: (NodeT) ⇒ Boolean = anyNode, edgeFilter: (GraphTraversalImpl.EdgeT) ⇒ Boolean = anyEdge, maxDepth: Int = 0, nodeVisitor: (NodeT) ⇒ VisitorReturn = noNodeAction, edgeVisitor: (GraphTraversalImpl.EdgeT) ⇒ Unit = noEdgeAction): List[GraphTraversalImpl.Cycle]

    Finds cycles with a node/edge set different from this cycle's node/edge set but sharing at least one common node with this cycle's node set.

    Finds cycles with a node/edge set different from this cycle's node/edge set but sharing at least one common node with this cycle's node set. Currently it is not guaranteed that all such cycles will be found as it could considerably blow up the number of cycles to be returned.

    nodeFilter

    Predicate to filter the nodes to be visited during traversal. The default value is anyNode, that is no filtering. A return of true signals that the traversal is to be canceled.

    edgeFilter

    Predicate to filter the edges to be visited during traversal. The default value is anyEdge meaning that no filtering takes place.

    maxDepth

    A positive value limits the number of layers for BFS respectively the number of consecutive child visits before siblings are visited for DFS. 0 - the default - indicates that the traversal should have an unlimited depth meaning that it will be continued either until it's canceled by nodeVisitor or until all nodes have been visited.

    nodeVisitor

    Function to be called on visiting a node for the first time during a traversal. It can mutate the node or carry out any other side effect. The default value is the empty function noNodeAction.

    edgeVisitor

    Function to be called on visiting an edge. It can mutate the node or carry out any other side effect. The default value is the empty function noEdgeAction.

    returns

    List of dependent cycles.

    Definition Classes
    CycleBufferCycle
  33. final def dependentCycles: List[GraphTraversalImpl.Cycle]

    Same as dependentCycles(...) with default arguments.

    Same as dependentCycles(...) with default arguments.

    Definition Classes
    Cycle
    Annotations
    @inline()
  34. def drop(n: Int): Iterable[GraphParamOut[N, E]]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  35. def dropRight(n: Int): Iterable[GraphParamOut[N, E]]

    Definition Classes
    IterableLike
  36. def dropWhile(p: (GraphParamOut[N, E]) ⇒ Boolean): Iterable[GraphParamOut[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  37. def edgeIterator: Iterator[GraphTraversalImpl.EdgeT]

    Iterator over the edges of this path.

    Iterator over the edges of this path. The result is chached on the first call, so consecutive calls of this method are cheep.

    returns

    Iterator over all edges of this path in proper order.

    Definition Classes
    Path
  38. def edges: List[GraphTraversalImpl.EdgeT]

    List containing all edges of this path in proper order.

    List containing all edges of this path in proper order.

    Definition Classes
    Path
  39. def endNode: NodeT

    Definition Classes
    PathBufferPath
  40. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    PathBuffer → Equals → AnyRef → Any
  42. def exists(p: (GraphParamOut[N, E]) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  43. def filter(p: (GraphParamOut[N, E]) ⇒ Boolean): Iterable[GraphParamOut[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  44. def filterNot(p: (GraphParamOut[N, E]) ⇒ Boolean): Iterable[GraphParamOut[N, E]]

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  46. def find(p: (GraphParamOut[N, E]) ⇒ Boolean): Option[GraphParamOut[N, E]]

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  47. def firstEdge(from: NodeT, to: NodeT): GraphTraversalImpl.EdgeT

    The first edge found having its tail at from and its head at to and satisfying navigation.edgeFilter.

    The first edge found having its tail at from and its head at to and satisfying navigation.edgeFilter. The caller must guarantee that there is at least one connecting edge between from and to with navigation.edgeFilter. This simplest select method can be passed to +=: (node, selectEdge) whenever any of possibly several edges between the two nodes satisfies the needs of the algorithm.

    Definition Classes
    PathBuffer
  48. def flatMap[B, That](f: (GraphParamOut[N, E]) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[GraphParamOut[N, E]], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  49. def flatten[B](implicit asTraversable: (GraphParamOut[N, E]) ⇒ GenTraversableOnce[B]): Iterable[B]

    Definition Classes
    GenericTraversableTemplate
  50. def fold[A1 >: GraphParamOut[N, E]](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  51. def foldLeft[B](z: B)(op: (B, GraphParamOut[N, E]) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  52. def foldRight[B](z: B)(op: (GraphParamOut[N, E], B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  53. def forall(p: (GraphParamOut[N, E]) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  54. def foreach[U](f: (GraphParamOut[N, E]) ⇒ U): Unit

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  55. def genericBuilder[B]: Builder[B, Iterable[B]]

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

    Definition Classes
    AnyRef → Any
  57. def groupBy[K](f: (GraphParamOut[N, E]) ⇒ K): Map[K, Iterable[GraphParamOut[N, E]]]

    Definition Classes
    TraversableLike → GenTraversableLike
  58. def grouped(size: Int): Iterator[Iterable[GraphParamOut[N, E]]]

    Definition Classes
    IterableLike
  59. def hasDefiniteSize: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  60. def hashCode(): Int

    Definition Classes
    PathBuffer → AnyRef → Any
  61. def head: GraphParamOut[N, E]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  62. def headOption: Option[GraphParamOut[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  63. def init: Iterable[GraphParamOut[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  64. def inits: Iterator[Iterable[GraphParamOut[N, E]]]

    Definition Classes
    TraversableLike
  65. def isEmpty: Boolean

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

    Definition Classes
    Any
  67. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  68. def isValid: Boolean

    Returns whether the contents of this path are valid with respect to path semantics.

    Returns whether the contents of this path are valid with respect to path semantics. This check is appropriate whenever there may be any doubt about the correctness of the result of an algorithm.

    Definition Classes
    PathBufferPath
  69. def iterator: Iterator[GraphParamOut[N, E]]

    Definition Classes
    PathBuffer → IterableLike → GenIterableLike
  70. def last: GraphParamOut[N, E]

    Definition Classes
    TraversableLike → GenTraversableLike
  71. def lastOption: Option[GraphParamOut[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  72. def length: Int

    The number of edges on this path.

    The number of edges on this path.

    Definition Classes
    Path
  73. def map[B, That](f: (GraphParamOut[N, E]) ⇒ B)(implicit bf: CanBuildFrom[Iterable[GraphParamOut[N, E]], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  74. def max[B >: GraphParamOut[N, E]](implicit cmp: Ordering[B]): GraphParamOut[N, E]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def maxBy[B](f: (GraphParamOut[N, E]) ⇒ B)(implicit cmp: Ordering[B]): GraphParamOut[N, E]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def min[B >: GraphParamOut[N, E]](implicit cmp: Ordering[B]): GraphParamOut[N, E]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def minBy[B](f: (GraphParamOut[N, E]) ⇒ B)(implicit cmp: Ordering[B]): GraphParamOut[N, E]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def minWeightEdge(from: NodeT, to: NodeT): GraphTraversalImpl.EdgeT

    The edge with minimal weight having its tail at from and its head at to and satisfying navigation.edgeFilter.

    The edge with minimal weight having its tail at from and its head at to and satisfying navigation.edgeFilter. The caller must guarantee that there is at least one connecting edge between from and to with navigation.edgeFilter. This select method can be passed to +=: (node, selectEdge) whenever the edge with the minimal weight between the two nodes should be selected.

    Definition Classes
    PathBuffer
  79. def mkString: String

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

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

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

    Definition Classes
    AnyRef
  83. def newBuilder: Builder[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]]

    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  84. def nodeIterator: Iterator[NodeT]

    Iterator over the nodes of this path.

    Iterator over the nodes of this path. The result is chached on the first call, so consecutive calls of this method are cheep.

    returns

    Iterator over all nodes of this path in proper order.

    Definition Classes
    Path
  85. def nodes: List[NodeT]

    List containing all nodes of this path in proper order.

    List containing all nodes of this path in proper order.

    Definition Classes
    Path
  86. def nonEmpty: Boolean

    Definition Classes
    TraversableOnce → GenTraversableOnce
  87. final def notify(): Unit

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

    Definition Classes
    AnyRef
  89. def par: ParIterable[GraphParamOut[N, E]]

    Definition Classes
    Parallelizable
  90. def parCombiner: Combiner[GraphParamOut[N, E], ParIterable[GraphParamOut[N, E]]]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  91. def partition(p: (GraphParamOut[N, E]) ⇒ Boolean): (Iterable[GraphParamOut[N, E]], Iterable[GraphParamOut[N, E]])

    Definition Classes
    TraversableLike → GenTraversableLike
  92. def product[B >: GraphParamOut[N, E]](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  93. def reduce[A1 >: GraphParamOut[N, E]](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def reduceLeft[B >: GraphParamOut[N, E]](op: (B, GraphParamOut[N, E]) ⇒ B): B

    Definition Classes
    TraversableOnce
  95. def reduceLeftOption[B >: GraphParamOut[N, E]](op: (B, GraphParamOut[N, E]) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def reduceOption[A1 >: GraphParamOut[N, E]](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def reduceRight[B >: GraphParamOut[N, E]](op: (GraphParamOut[N, E], B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  98. def reduceRightOption[B >: GraphParamOut[N, E]](op: (GraphParamOut[N, E], B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def repr: Iterable[GraphParamOut[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  100. def reversed: List[GraphParamOut[N, E]]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  101. def sameAs(that: Cycle): Boolean

    Semantically compares this cycle with that cycle.

    Semantically compares this cycle with that cycle. While == returns true only if the cycles contain the same elements in the same order, this comparison returns also true if the elements of that cycle can be shifted and optionally reversed such that their elements have the same order.

    For instance, given

    c1 = Cycle(1-2-3-1), c2 = Cycle(2-3-1-2) and c3 = Cycle(2-1-3-2)

    the following expressions hold:

    c1 != c2, c1 != c3 but c1 sameAs c2 and c1 sameAs c3.

    Definition Classes
    CycleBufferCycle
  102. def sameElements[B >: GraphParamOut[N, E]](that: GenIterable[B]): Boolean

    Definition Classes
    IterableLike → GenIterableLike
  103. def scan[B >: GraphParamOut[N, E], That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Iterable[GraphParamOut[N, E]], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  104. def scanLeft[B, That](z: B)(op: (B, GraphParamOut[N, E]) ⇒ B)(implicit bf: CanBuildFrom[Iterable[GraphParamOut[N, E]], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  105. def scanRight[B, That](z: B)(op: (GraphParamOut[N, E], B) ⇒ B)(implicit bf: CanBuildFrom[Iterable[GraphParamOut[N, E]], 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.

  106. def seq: Iterable[GraphParamOut[N, E]]

    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  107. def size: Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. def slice(from: Int, until: Int): Iterable[GraphParamOut[N, E]]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  109. def sliding(size: Int, step: Int): Iterator[Iterable[GraphParamOut[N, E]]]

    Definition Classes
    IterableLike
  110. def sliding(size: Int): Iterator[Iterable[GraphParamOut[N, E]]]

    Definition Classes
    IterableLike
  111. def span(p: (GraphParamOut[N, E]) ⇒ Boolean): (Iterable[GraphParamOut[N, E]], Iterable[GraphParamOut[N, E]])

    Definition Classes
    TraversableLike → GenTraversableLike
  112. def splitAt(n: Int): (Iterable[GraphParamOut[N, E]], Iterable[GraphParamOut[N, E]])

    Definition Classes
    TraversableLike → GenTraversableLike
  113. def startNode: NodeT

    Definition Classes
    PathBufferPath
  114. def stringPrefix: String

    Definition Classes
    CyclePath → TraversableLike → GenTraversableLike
  115. def sum[B >: GraphParamOut[N, E]](implicit num: Numeric[B]): B

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

    Definition Classes
    AnyRef
  117. def tail: Iterable[GraphParamOut[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  118. def tails: Iterator[Iterable[GraphParamOut[N, E]]]

    Definition Classes
    TraversableLike
  119. def take(n: Int): Iterable[GraphParamOut[N, E]]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  120. def takeRight(n: Int): Iterable[GraphParamOut[N, E]]

    Definition Classes
    IterableLike
  121. def takeWhile(p: (GraphParamOut[N, E]) ⇒ Boolean): Iterable[GraphParamOut[N, E]]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  122. def thisCollection: Iterable[GraphParamOut[N, E]]

    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  123. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, GraphParamOut[N, E], Col[GraphParamOut[N, E]]]): Col[GraphParamOut[N, E]]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  124. def toArray[B >: GraphParamOut[N, E]](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def toBuffer[B >: GraphParamOut[N, E]]: Buffer[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def toCollection(repr: Iterable[GraphParamOut[N, E]]): Iterable[GraphParamOut[N, E]]

    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  127. def toIndexedSeq: IndexedSeq[GraphParamOut[N, E]]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def toIterable: Iterable[GraphParamOut[N, E]]

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  129. def toIterator: Iterator[GraphParamOut[N, E]]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  130. def toList: List[GraphParamOut[N, E]]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  131. def toMap[T, U](implicit ev: <:<[GraphParamOut[N, E], (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def toSeq: Seq[GraphParamOut[N, E]]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def toSet[B >: GraphParamOut[N, E]]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  134. def toStream: Stream[GraphParamOut[N, E]]

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

    Definition Classes
    TraversableLike → Any
  136. def toTraversable: Traversable[GraphParamOut[N, E]]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  137. def toVector: Vector[GraphParamOut[N, E]]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  138. def transpose[B](implicit asTraversable: (GraphParamOut[N, E]) ⇒ 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.

  139. def unzip[A1, A2](implicit asPair: (GraphParamOut[N, E]) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])

    Definition Classes
    GenericTraversableTemplate
  140. def unzip3[A1, A2, A3](implicit asTriple: (GraphParamOut[N, E]) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])

    Definition Classes
    GenericTraversableTemplate
  141. def view(from: Int, until: Int): IterableView[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]]

    Definition Classes
    IterableLike → TraversableLike
  142. def view: IterableView[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]]

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  146. def weight: Long

    The cumulated weight of all edges on this path.

    The cumulated weight of all edges on this path.

    Definition Classes
    Path
  147. def withFilter(p: (GraphParamOut[N, E]) ⇒ Boolean): FilterMonadic[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]]

    Definition Classes
    TraversableLike → FilterMonadic
  148. def zip[A1 >: GraphParamOut[N, E], B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Iterable[GraphParamOut[N, E]], (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  149. def zipAll[B, A1 >: GraphParamOut[N, E], That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Iterable[GraphParamOut[N, E]], (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  150. def zipWithIndex[A1 >: GraphParamOut[N, E], That](implicit bf: CanBuildFrom[Iterable[GraphParamOut[N, E]], (A1, Int), That]): That

    Definition Classes
    IterableLike → GenIterableLike

Deprecated Value Members

  1. def /:\[A1 >: GraphParamOut[N, E]](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use fold instead

Inherited from GraphTraversalImpl.Cycle

Inherited from PathBuffer

Inherited from GraphTraversalImpl.Path

Inherited from Iterable[GraphParamOut[N, E]]

Inherited from IterableLike[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]]

Inherited from Equals

Inherited from GenIterable[GraphParamOut[N, E]]

Inherited from GenIterableLike[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]]

Inherited from Traversable[GraphParamOut[N, E]]

Inherited from GenTraversable[GraphParamOut[N, E]]

Inherited from GenericTraversableTemplate[GraphParamOut[N, E], Iterable]

Inherited from TraversableLike[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]]

Inherited from GenTraversableLike[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]]

Inherited from Parallelizable[GraphParamOut[N, E], ParIterable[GraphParamOut[N, E]]]

Inherited from TraversableOnce[GraphParamOut[N, E]]

Inherited from GenTraversableOnce[GraphParamOut[N, E]]

Inherited from FilterMonadic[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]]

Inherited from HasNewBuilder[GraphParamOut[N, E], Iterable[GraphParamOut[N, E]]]

Inherited from AnyRef

Inherited from Any

Ungrouped