scalax.collection.GraphTraversal

Cycle

trait Cycle extends Path

Represents a cycle in this graph listing the nodes and connecting edges on it with the following syntax:

cycle ::= start-end-node { edge node } edge start-end-node

All nodes and edges on the path are distinct except the start and end nodes that are equal. A cycle contains at least a start node followed by any number of consecutive pairs of an edge and a node and the end node equaling to the start node. The first element is the start node, the second is an edge with its tail being the start node and its head being the third element etc.

Linear Supertypes
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
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Cycle
  2. Path
  3. Iterable
  4. IterableLike
  5. Equals
  6. GenIterable
  7. GenIterableLike
  8. Traversable
  9. GenTraversable
  10. GenericTraversableTemplate
  11. TraversableLike
  12. GenTraversableLike
  13. Parallelizable
  14. TraversableOnce
  15. GenTraversableOnce
  16. FilterMonadic
  17. HasNewBuilder
  18. AnyRef
  19. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

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

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

    Definition Classes
    TraversableLike

Abstract Value Members

  1. abstract def dependentCycles(nodeFilter: (NodeT) ⇒ Boolean = anyNode, edgeFilter: (GraphTraversal.EdgeT) ⇒ Boolean = anyEdge, maxDepth: Int = 0, nodeVisitor: (NodeT) ⇒ VisitorReturn = noNodeAction, edgeVisitor: (GraphTraversal.EdgeT) ⇒ Unit = noEdgeAction): List[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. Alternatively, an instance of ExtendedNodeVisitor may be passed to obtain additional state information such as the current depth. The concrete type of the last argument, the informer depends on the underlying implementation so you need to match against it. Concerning this method please match against scalax.collection.GraphTraversalImpl.WgbInformer.

    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.

  2. abstract def endNode: NodeT

    Definition Classes
    Path
  3. abstract 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
    Path
  4. abstract def iterator: Iterator[GraphParamOut[N, E]]

    Definition Classes
    IterableLike → GenIterableLike
  5. abstract 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.

  6. abstract def startNode: NodeT

    Definition Classes
    Path

Concrete 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 /:[B](z: B)(op: (B, GraphParamOut[N, E]) ⇒ B): B

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

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

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

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

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

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

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

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

    Definition Classes
    Any
  16. def canEqual(that: Any): Boolean

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

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

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

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

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

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  26. final def dependentCycles: List[Cycle]

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

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

    Annotations
    @inline()
  27. def drop(n: Int): Iterable[GraphParamOut[N, E]]

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

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

    Definition Classes
    TraversableLike → GenTraversableLike
  30. def edgeIterator: Iterator[GraphTraversal.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
  31. def edges: List[GraphTraversal.EdgeT]

    List containing all edges of this path in proper order.

    List containing all edges of this path in proper order.

    Definition Classes
    Path
  32. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  33. def equals(arg0: Any): Boolean

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

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

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

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

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

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  39. 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
  40. def flatten[B](implicit asTraversable: (GraphParamOut[N, E]) ⇒ GenTraversableOnce[B]): Iterable[B]

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

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

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

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

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

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

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

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

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

    Definition Classes
    IterableLike
  50. def hasDefiniteSize: Boolean

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

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

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

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

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

    Definition Classes
    TraversableLike
  56. def isEmpty: Boolean

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

    Definition Classes
    Any
  58. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  59. def last: GraphParamOut[N, E]

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

    Definition Classes
    TraversableLike → GenTraversableLike
  61. def length: Int

    The number of edges on this path.

    The number of edges on this path.

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

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. def mkString: String

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

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

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

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

    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  72. 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
  73. 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
  74. def nonEmpty: Boolean

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  89. def sameElements[B >: GraphParamOut[N, E]](that: GenIterable[B]): Boolean

    Definition Classes
    IterableLike → GenIterableLike
  90. 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
  91. 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
  92. 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.

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

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

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

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

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

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

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

    Definition Classes
    TraversableLike → GenTraversableLike
  100. def stringPrefix: String

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    The cumulated weight of all edges on this path.

    The cumulated weight of all edges on this path.

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

    Definition Classes
    TraversableLike → FilterMonadic
  134. 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
  135. 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
  136. 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 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