Packages

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.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Cycle
  2. Path
  3. Walk
  4. Traversable
  5. GenTraversable
  6. GenericTraversableTemplate
  7. TraversableLike
  8. GenTraversableLike
  9. Parallelizable
  10. TraversableOnce
  11. GenTraversableOnce
  12. FilterMonadic
  13. HasNewBuilder
  14. AnyRef
  15. Any
Implicitly
  1. by anyToNode
  2. by CollectionsHaveToParArray
  3. by MonadOps
  4. by EdgeAssoc
  5. by any2stringadd
  6. by StringFormat
  7. by Ensuring
  8. by ArrowAssoc
  9. by alternateImplicit
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Self = Traversable[GraphTraversal.InnerElem]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike
  3. trait NodeValidator extends (NodeT) ⇒ Boolean
    Attributes
    protected
    Definition Classes
    Walk

Abstract Value Members

  1. abstract def edges: Traversable[GraphTraversal.EdgeT]

    All edges of this path/walk in proper order.

    All edges of this path/walk in proper order.

    Definition Classes
    Walk
  2. abstract def nodes: Traversable[NodeT]

    All nodes on this path/walk in proper order.

    All nodes on this path/walk in proper order.

    Definition Classes
    Walk
  3. abstract def startNode: NodeT
    Definition Classes
    Walk

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 Cycle to any2stringadd[Cycle] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[B >: GraphTraversal.InnerElem, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[GraphTraversal.InnerElem], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  5. def ++:[B >: GraphTraversal.InnerElem, That](that: Traversable[B])(implicit bf: CanBuildFrom[Traversable[GraphTraversal.InnerElem], B, That]): That
    Definition Classes
    TraversableLike
  6. def ++:[B >: GraphTraversal.InnerElem, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[GraphTraversal.InnerElem], B, That]): That
    Definition Classes
    TraversableLike
  7. def ->[B](y: B): (Cycle, B)
    Implicit
    This member is added by an implicit conversion from Cycle to ArrowAssoc[Cycle] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. def /:[B](z: B)(op: (B, GraphTraversal.InnerElem) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  9. def :\[B](z: B)(op: (GraphTraversal.InnerElem, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  10. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → 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, GraphTraversal.InnerElem) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  15. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  16. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  17. def collect[B, That](pf: PartialFunction[GraphTraversal.InnerElem, B])(implicit bf: CanBuildFrom[Traversable[GraphTraversal.InnerElem], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  18. def collectFirst[B](pf: PartialFunction[GraphTraversal.InnerElem, B]): Option[B]
    Definition Classes
    TraversableOnce
  19. def companion: GenericCompanion[Traversable]
    Definition Classes
    Traversable → GenTraversable → GenericTraversableTemplate
  20. final def containingGraph: GraphTraversal.this.type

    The Graph instance that contains this walk.

    The Graph instance that contains this walk.

    Definition Classes
    Walk
  21. def copyToArray[B >: GraphTraversal.InnerElem](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  22. def copyToArray[B >: GraphTraversal.InnerElem](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  23. def copyToArray[B >: GraphTraversal.InnerElem](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  24. def copyToBuffer[B >: GraphTraversal.InnerElem](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  25. def count(p: (GraphTraversal.InnerElem) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  26. def drop(n: Int): Traversable[GraphTraversal.InnerElem]
    Definition Classes
    TraversableLike → GenTraversableLike
  27. def dropWhile(p: (GraphTraversal.InnerElem) ⇒ Boolean): Traversable[GraphTraversal.InnerElem]
    Definition Classes
    TraversableLike → GenTraversableLike
  28. def endNode: NodeT
    Definition Classes
    CycleWalk
  29. def ensuring(cond: (Cycle) ⇒ Boolean, msg: ⇒ Any): Cycle
    Implicit
    This member is added by an implicit conversion from Cycle to Ensuring[Cycle] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: (Cycle) ⇒ Boolean): Cycle
    Implicit
    This member is added by an implicit conversion from Cycle to Ensuring[Cycle] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. def ensuring(cond: Boolean, msg: ⇒ Any): Cycle
    Implicit
    This member is added by an implicit conversion from Cycle to Ensuring[Cycle] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. def ensuring(cond: Boolean): Cycle
    Implicit
    This member is added by an implicit conversion from Cycle to Ensuring[Cycle] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  35. def exists(p: (GraphTraversal.InnerElem) ⇒ Boolean): Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  36. def filter(p: (GraphTraversal.InnerElem) ⇒ Boolean): Traversable[GraphTraversal.InnerElem]
    Definition Classes
    TraversableLike → GenTraversableLike
  37. def filterNot(p: (GraphTraversal.InnerElem) ⇒ Boolean): Traversable[GraphTraversal.InnerElem]
    Definition Classes
    TraversableLike → GenTraversableLike
  38. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  39. def find(p: (GraphTraversal.InnerElem) ⇒ Boolean): Option[GraphTraversal.InnerElem]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  40. def flatMap[B, That](f: (GraphTraversal.InnerElem) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[GraphTraversal.InnerElem], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  41. def flatten[B](implicit asTraversable: (GraphTraversal.InnerElem) ⇒ GenTraversableOnce[B]): Traversable[B]
    Definition Classes
    GenericTraversableTemplate
  42. def fold[A1 >: GraphTraversal.InnerElem](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  43. def foldLeft[B](z: B)(op: (B, GraphTraversal.InnerElem) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def foldRight[B](z: B)(op: (GraphTraversal.InnerElem, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def forall(p: (GraphTraversal.InnerElem) ⇒ Boolean): Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  46. def foreach[U](f: (GraphTraversal.InnerElem) ⇒ U): Unit
    Definition Classes
    Walk → GenericTraversableTemplate → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  47. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Cycle to StringFormat[Cycle] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  48. def genericBuilder[B]: Builder[B, Traversable[B]]
    Definition Classes
    GenericTraversableTemplate
  49. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  50. def groupBy[K](f: (GraphTraversal.InnerElem) ⇒ K): Map[K, Traversable[GraphTraversal.InnerElem]]
    Definition Classes
    TraversableLike → GenTraversableLike
  51. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  52. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  53. def head: GraphTraversal.InnerElem
    Definition Classes
    TraversableLike → GenTraversableLike
  54. def headOption: Option[GraphTraversal.InnerElem]
    Definition Classes
    TraversableLike → GenTraversableLike
  55. def init: Traversable[GraphTraversal.InnerElem]
    Definition Classes
    TraversableLike → GenTraversableLike
  56. def inits: Iterator[Traversable[GraphTraversal.InnerElem]]
    Definition Classes
    TraversableLike
  57. def isDefined: Boolean
    Implicit
    This member is added by an implicit conversion from Cycle to OuterNode[Cycle] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  58. def isEdge: Boolean
    Implicit
    This member is added by an implicit conversion from Cycle to OuterNode[Cycle] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  59. def isEmpty: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  60. def isIn: Boolean
    Implicit
    This member is added by an implicit conversion from Cycle to OuterNode[Cycle] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  61. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  62. def isNode: Boolean
    Implicit
    This member is added by an implicit conversion from Cycle to OuterNode[Cycle] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  63. def isOut: Boolean
    Implicit
    This member is added by an implicit conversion from Cycle to OuterNode[Cycle] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  64. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  65. def isValid: Boolean

    Returns whether the nodes and edges on this path are valid with respect to this graph.

    Returns whether the nodes and edges on this path are valid with respect to this graph. This optional check is sane if there is reasonable doubt about the correctness of some algorithm results.

    Definition Classes
    PathWalk
  66. def last: GraphTraversal.InnerElem
    Definition Classes
    TraversableLike → GenTraversableLike
  67. def lastOption: Option[GraphTraversal.InnerElem]
    Definition Classes
    TraversableLike → GenTraversableLike
  68. def length: Int

    The number of edges on this path/walk.

    The number of edges on this path/walk.

    Definition Classes
    Walk
  69. def map[B, That](f: (GraphTraversal.InnerElem) ⇒ B)(implicit bf: CanBuildFrom[Traversable[GraphTraversal.InnerElem], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  70. def max[B >: GraphTraversal.InnerElem](implicit cmp: Ordering[B]): GraphTraversal.InnerElem
    Definition Classes
    TraversableOnce → GenTraversableOnce
  71. def maxBy[B](f: (GraphTraversal.InnerElem) ⇒ B)(implicit cmp: Ordering[B]): GraphTraversal.InnerElem
    Definition Classes
    TraversableOnce → GenTraversableOnce
  72. def min[B >: GraphTraversal.InnerElem](implicit cmp: Ordering[B]): GraphTraversal.InnerElem
    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. def minBy[B](f: (GraphTraversal.InnerElem) ⇒ B)(implicit cmp: Ordering[B]): GraphTraversal.InnerElem
    Definition Classes
    TraversableOnce → GenTraversableOnce
  74. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. val n1: Cycle
    Implicit
    This member is added by an implicit conversion from Cycle to EdgeAssoc[Cycle] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
  78. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  79. def newBuilder: Builder[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]]
    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  80. def nodeValidator: NodeValidator
    Attributes
    protected
    Definition Classes
    PathWalk
  81. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  82. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  83. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  84. def par: ParIterable[GraphTraversal.InnerElem]
    Definition Classes
    Parallelizable
  85. def parCombiner: Combiner[GraphTraversal.InnerElem, ParIterable[GraphTraversal.InnerElem]]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  86. def partition(p: (GraphTraversal.InnerElem) ⇒ Boolean): (Traversable[GraphTraversal.InnerElem], Traversable[GraphTraversal.InnerElem])
    Definition Classes
    TraversableLike → GenTraversableLike
  87. def product[B >: GraphTraversal.InnerElem](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  88. def reduce[A1 >: GraphTraversal.InnerElem](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def reduceLeft[B >: GraphTraversal.InnerElem](op: (B, GraphTraversal.InnerElem) ⇒ B): B
    Definition Classes
    TraversableOnce
  90. def reduceLeftOption[B >: GraphTraversal.InnerElem](op: (B, GraphTraversal.InnerElem) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def reduceOption[A1 >: GraphTraversal.InnerElem](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def reduceRight[B >: GraphTraversal.InnerElem](op: (GraphTraversal.InnerElem, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  93. def reduceRightOption[B >: GraphTraversal.InnerElem](op: (GraphTraversal.InnerElem, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def repr: Traversable[GraphTraversal.InnerElem]
    Definition Classes
    TraversableLike → GenTraversableLike
  95. def reversed: List[GraphTraversal.InnerElem]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  96. final 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.

  97. final def sameElements(that: Traversable[_]): Boolean

    Same as sameAs but also comparing this cycle with any Traversable.

  98. def scan[B >: GraphTraversal.InnerElem, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Traversable[GraphTraversal.InnerElem], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  99. def scanLeft[B, That](z: B)(op: (B, GraphTraversal.InnerElem) ⇒ B)(implicit bf: CanBuildFrom[Traversable[GraphTraversal.InnerElem], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  100. def scanRight[B, That](z: B)(op: (GraphTraversal.InnerElem, B) ⇒ B)(implicit bf: CanBuildFrom[Traversable[GraphTraversal.InnerElem], 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.

  101. def seq: Traversable[GraphTraversal.InnerElem]
    Definition Classes
    Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  102. def size: Int

    The number of nodes and edges on this path/walk.

    The number of nodes and edges on this path/walk.

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

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

  132. def unzip[A1, A2](implicit asPair: (GraphTraversal.InnerElem) ⇒ (A1, A2)): (Traversable[A1], Traversable[A2])
    Definition Classes
    GenericTraversableTemplate
  133. def unzip3[A1, A2, A3](implicit asTriple: (GraphTraversal.InnerElem) ⇒ (A1, A2, A3)): (Traversable[A1], Traversable[A2], Traversable[A3])
    Definition Classes
    GenericTraversableTemplate
  134. val value: Cycle
    Implicit
    This member is added by an implicit conversion from Cycle to OuterNode[Cycle] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    OuterNodeNodeParam
  135. def view(from: Int, until: Int): TraversableView[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]]
    Definition Classes
    TraversableLike
  136. def view: TraversableView[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]]
    Definition Classes
    TraversableLike
  137. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  138. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  139. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  140. final def weight[T](f: (GraphTraversal.EdgeT) ⇒ T)(implicit arg0: Numeric[T]): T

    The cumulated weight of all edges on this path/walk.

    The cumulated weight of all edges on this path/walk.

    f

    The weight function overriding edge weights.

    Definition Classes
    Walk
  141. final def weight: Double

    The cumulated weight of all edges on this path/walk.

    The cumulated weight of all edges on this path/walk.

    Definition Classes
    Walk
  142. def withFilter(p: (GraphTraversal.InnerElem) ⇒ Boolean): FilterMonadic[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]]
    Definition Classes
    TraversableLike → FilterMonadic
  143. def ~[N >: N1](n2: N): UnDiEdge[N]
    Implicit
    This member is added by an implicit conversion from Cycle to EdgeAssoc[Cycle] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  144. def ~>[N >: N1](n2: N): DiEdge[N]
    Implicit
    This member is added by an implicit conversion from Cycle to EdgeAssoc[Cycle] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  145. def [B](y: B): (Cycle, B)
    Implicit
    This member is added by an implicit conversion from Cycle to ArrowAssoc[Cycle] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def filter(p: (GraphTraversal.InnerElem) ⇒ Boolean): TraversableOnce[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Cycle to MonadOps[GraphTraversal.InnerElem] 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:
    (cycle: MonadOps[GraphTraversal.InnerElem]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: (GraphTraversal.InnerElem) ⇒ GenTraversableOnce[B]): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from Cycle to MonadOps[GraphTraversal.InnerElem] 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:
    (cycle: MonadOps[GraphTraversal.InnerElem]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: (GraphTraversal.InnerElem) ⇒ B): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from Cycle to MonadOps[GraphTraversal.InnerElem] 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:
    (cycle: MonadOps[GraphTraversal.InnerElem]).map(f)
    Definition Classes
    MonadOps
  4. def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from Cycle to OuterNode[Cycle] 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:
    (cycle: OuterNode[Cycle]).stringPrefix
    Definition Classes
    NodeParam
  5. def toString(): String
    Implicit
    This member is added by an implicit conversion from Cycle to OuterNode[Cycle] 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:
    (cycle: OuterNode[Cycle]).toString()
    Definition Classes
    NodeParam → AnyRef → Any
  6. def withFilter(p: (GraphTraversal.InnerElem) ⇒ Boolean): Iterator[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Cycle to MonadOps[GraphTraversal.InnerElem] 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:
    (cycle: MonadOps[GraphTraversal.InnerElem]).withFilter(p)
    Definition Classes
    MonadOps

Inherited from Path

Inherited from Walk

Inherited from AnyRef

Inherited from Any

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

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

Inherited by implicit conversion MonadOps from Cycle to MonadOps[GraphTraversal.InnerElem]

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

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

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

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

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

Inherited by implicit conversion alternateImplicit from Cycle to ForceImplicitAmbiguity

Ungrouped