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
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Cycle
  2. Path
  3. Traversable
  4. GenTraversable
  5. GenericTraversableTemplate
  6. TraversableLike
  7. GenTraversableLike
  8. Parallelizable
  9. TraversableOnce
  10. GenTraversableOnce
  11. FilterMonadic
  12. HasNewBuilder
  13. AnyRef
  14. Any
Implicitly
  1. by anyToNode
  2. by traversable2ops
  3. by MonadOps
  4. by EdgeAssoc
  5. by any2stringadd
  6. by any2stringfmt
  7. by any2ArrowAssoc
  8. by any2Ensuring
  9. by alternateImplicit
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type Self = Traversable[OutParam[N, E]]

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

    Definition Classes
    TraversableLike

Abstract Value Members

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

    All edges of this path in proper order.

    All edges of this path in proper order.

    Definition Classes
    Path
  2. abstract def endNode: NodeT

    Definition Classes
    Path
  3. abstract def foreach[U](f: (OutParam[N, E]) ⇒ U): Unit

    Definition Classes
    GenericTraversableTemplate
  4. 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
  5. abstract def nodes: Traversable[NodeT]

    All nodes of this path in proper order.

    All nodes of this path in proper order.

    Definition Classes
    Path
  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 +(other: String): String

    Implicit information
    This member is added by an implicit conversion from Cycle to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ++[B >: OutParam[N, E], That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[OutParam[N, E]], B, That]): That

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

    Definition Classes
    TraversableLike
  7. def ++:[B >: OutParam[N, E], That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[OutParam[N, E]], B, That]): That

    Definition Classes
    TraversableLike
  8. def ->[B](y: B): (Cycle, B)

    Implicit information
    This member is added by an implicit conversion from Cycle to ArrowAssoc[Cycle] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  9. def /:[B](z: B)(op: (B, OutParam[N, E]) ⇒ B): B

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

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

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

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

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

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

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

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

    Definition Classes
    Any
  18. def asParIterable: ParIterable[OutParam[N, E]]

    Implicit information
    This member is added by an implicit conversion from Cycle to TraversableOps[OutParam[N, E]] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  19. def asParSeq: ParSeq[OutParam[N, E]]

    Implicit information
    This member is added by an implicit conversion from Cycle to TraversableOps[OutParam[N, E]] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  20. def clone(): AnyRef

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

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

    Definition Classes
    TraversableOnce
  23. def companion: GenericCompanion[Traversable]

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

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  29. def drop(n: Int): Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  30. def dropWhile(p: (OutParam[N, E]) ⇒ Boolean): Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  31. def ensuring(cond: (Cycle) ⇒ Boolean, msg: ⇒ Any): Cycle

    Implicit information
    This member is added by an implicit conversion from Cycle to Ensuring[Cycle] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. def ensuring(cond: (Cycle) ⇒ Boolean): Cycle

    Implicit information
    This member is added by an implicit conversion from Cycle to Ensuring[Cycle] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. def ensuring(cond: Boolean, msg: ⇒ Any): Cycle

    Implicit information
    This member is added by an implicit conversion from Cycle to Ensuring[Cycle] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  34. def ensuring(cond: Boolean): Cycle

    Implicit information
    This member is added by an implicit conversion from Cycle to Ensuring[Cycle] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  35. final def eq(arg0: AnyRef): Boolean

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

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

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  38. def filter(p: (OutParam[N, E]) ⇒ Boolean): Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  39. def filterNot(p: (OutParam[N, E]) ⇒ Boolean): Traversable[OutParam[N, E]]

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

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

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  42. def flatMap[B, That](f: (OutParam[N, E]) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[OutParam[N, E]], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  43. def flatten[B](implicit asTraversable: (OutParam[N, E]) ⇒ GenTraversableOnce[B]): Traversable[B]

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  47. def forall(p: (OutParam[N, E]) ⇒ Boolean): Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  48. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from Cycle to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  49. def genericBuilder[B]: Builder[B, Traversable[B]]

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

    Definition Classes
    AnyRef → Any
  51. def groupBy[K](f: (OutParam[N, E]) ⇒ K): Map[K, Traversable[OutParam[N, E]]]

    Definition Classes
    TraversableLike → GenTraversableLike
  52. def hasDefiniteSize: Boolean

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

    Definition Classes
    AnyRef → Any
  54. def head: OutParam[N, E]

    Definition Classes
    TraversableLike → GenTraversableLike
  55. def headOption: Option[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  56. def ifParSeq[R](isbody: (ParSeq[OutParam[N, E]]) ⇒ R): (TraversableOps[OutParam[N, E]])#Otherwise[R]

    Implicit information
    This member is added by an implicit conversion from Cycle to TraversableOps[OutParam[N, E]] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  57. def init: Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  58. def inits: Iterator[Traversable[OutParam[N, E]]]

    Definition Classes
    TraversableLike
  59. def isDefined: Boolean

    Implicit information
    This member is added by an implicit conversion from Cycle to OuterNode[Cycle] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  60. def isEdge: Boolean

    Implicit information
    This member is added by an implicit conversion from Cycle to OuterNode[Cycle] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  61. def isEmpty: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  62. def isIn: Boolean

    Implicit information
    This member is added by an implicit conversion from Cycle to OuterNode[Cycle] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  63. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  64. def isNode: Boolean

    Implicit information
    This member is added by an implicit conversion from Cycle to OuterNode[Cycle] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  65. def isOut: Boolean

    Implicit information
    This member is added by an implicit conversion from Cycle to OuterNode[Cycle] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  66. def isParIterable: Boolean

    Implicit information
    This member is added by an implicit conversion from Cycle to TraversableOps[OutParam[N, E]] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  67. def isParSeq: Boolean

    Implicit information
    This member is added by an implicit conversion from Cycle to TraversableOps[OutParam[N, E]] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  68. def isParallel: Boolean

    Implicit information
    This member is added by an implicit conversion from Cycle to TraversableOps[OutParam[N, E]] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  69. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  70. def last: OutParam[N, E]

    Definition Classes
    TraversableLike → GenTraversableLike
  71. def lastOption: Option[OutParam[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: (OutParam[N, E]) ⇒ B)(implicit bf: CanBuildFrom[Traversable[OutParam[N, E]], B, That]): That

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def mkString: String

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. val n1: Cycle

    Implicit information
    This member is added by an implicit conversion from Cycle to EdgeAssoc[Cycle] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
  82. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  83. def newBuilder: Builder[OutParam[N, E], Traversable[OutParam[N, E]]]

    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  84. def nonEmpty: Boolean

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

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

    Definition Classes
    AnyRef
  87. def par: ParIterable[OutParam[N, E]]

    Definition Classes
    Parallelizable
  88. def parCombiner: Combiner[OutParam[N, E], ParIterable[OutParam[N, E]]]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  89. def partition(p: (OutParam[N, E]) ⇒ Boolean): (Traversable[OutParam[N, E]], Traversable[OutParam[N, E]])

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

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

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

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def repr: Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  98. def reversed: List[OutParam[N, E]]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  99. 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.

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

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

  101. def scan[B >: OutParam[N, E], That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Traversable[OutParam[N, E]], B, That]): That

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

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

  104. def seq: Traversable[OutParam[N, E]]

    Definition Classes
    Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  105. def size: Int

    The number of nodes and edges on this path.

    The number of nodes and edges on this path.

    Definition Classes
    Path → GenTraversableLike → TraversableOnce → GenTraversableOnce
  106. def slice(from: Int, until: Int): Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  107. def span(p: (OutParam[N, E]) ⇒ Boolean): (Traversable[OutParam[N, E]], Traversable[OutParam[N, E]])

    Definition Classes
    TraversableLike → GenTraversableLike
  108. def splitAt(n: Int): (Traversable[OutParam[N, E]], Traversable[OutParam[N, E]])

    Definition Classes
    TraversableLike → GenTraversableLike
  109. def stringPrefix: String

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

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

    Definition Classes
    AnyRef
  112. def tail: Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  113. def tails: Iterator[Traversable[OutParam[N, E]]]

    Definition Classes
    TraversableLike
  114. def take(n: Int): Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  115. def takeWhile(p: (OutParam[N, E]) ⇒ Boolean): Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  116. def thisCollection: Traversable[OutParam[N, E]]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  117. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, OutParam[N, E], Col[OutParam[N, E]]]): Col[OutParam[N, E]]

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. def toCollection(repr: Traversable[OutParam[N, E]]): Traversable[OutParam[N, E]]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  121. def toIndexedSeq: IndexedSeq[OutParam[N, E]]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  122. def toIterable: Iterable[OutParam[N, E]]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. def toIterator: Iterator[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableOnce
  124. def toList: List[OutParam[N, E]]

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def toParArray: ParArray[OutParam[N, E]]

    Implicit information
    This member is added by an implicit conversion from Cycle to TraversableOps[OutParam[N, E]] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  127. def toSeq: Seq[OutParam[N, E]]

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def toStream: Stream[OutParam[N, E]]

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

    Definition Classes
    TraversableLike → Any
  131. def toTraversable: Traversable[OutParam[N, E]]

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

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

  134. def unzip[A1, A2](implicit asPair: (OutParam[N, E]) ⇒ (A1, A2)): (Traversable[A1], Traversable[A2])

    Definition Classes
    GenericTraversableTemplate
  135. def unzip3[A1, A2, A3](implicit asTriple: (OutParam[N, E]) ⇒ (A1, A2, A3)): (Traversable[A1], Traversable[A2], Traversable[A3])

    Definition Classes
    GenericTraversableTemplate
  136. val value: Cycle

    Implicit information
    This member is added by an implicit conversion from Cycle to OuterNode[Cycle] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    OuterNodeNodeParam
  137. def view(from: Int, until: Int): TraversableView[OutParam[N, E], Traversable[OutParam[N, E]]]

    Definition Classes
    TraversableLike
  138. def view: TraversableView[OutParam[N, E], Traversable[OutParam[N, E]]]

    Definition Classes
    TraversableLike
  139. final def wait(): Unit

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

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

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

    The cumulated weight of all edges on this path.

    The cumulated weight of all edges on this path.

    Definition Classes
    Path
  143. def withFilter(p: (OutParam[N, E]) ⇒ Boolean): FilterMonadic[OutParam[N, E], Traversable[OutParam[N, E]]]

    Definition Classes
    TraversableLike → FilterMonadic
  144. def ~[N >: N1, N2 <: N](n2: N2): UnDiEdge[N]

    Implicit information
    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 ~>[N >: N1, N2 <: N](n2: N2): DiEdge[N]

    Implicit information
    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()
  146. def [B](y: B): (Cycle, B)

    Implicit information
    This member is added by an implicit conversion from Cycle to ArrowAssoc[Cycle] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def filter(p: (OutParam[N, E]) ⇒ Boolean): TraversableOnce[OutParam[N, E]]

    Implicit information
    This member is added by an implicit conversion from Cycle to MonadOps[OutParam[N, E]] 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[OutParam[N, E]]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: (OutParam[N, E]) ⇒ GenTraversableOnce[B]): TraversableOnce[B]

    Implicit information
    This member is added by an implicit conversion from Cycle to MonadOps[OutParam[N, E]] 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[OutParam[N, E]]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: (OutParam[N, E]) ⇒ B): TraversableOnce[B]

    Implicit information
    This member is added by an implicit conversion from Cycle to MonadOps[OutParam[N, E]] 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[OutParam[N, E]]).map(f)
    Definition Classes
    MonadOps
  4. val self: Any

    Implicit information
    This member is added by an implicit conversion from Cycle to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (cycle: StringAdd).self
    Definition Classes
    StringAdd
  5. val self: Any

    Implicit information
    This member is added by an implicit conversion from Cycle to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (cycle: StringFormat).self
    Definition Classes
    StringFormat
  6. def stringPrefix: String

    Implicit information
    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
  7. def toString(): String

    Implicit information
    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
  8. def withFilter(p: (OutParam[N, E]) ⇒ Boolean): Iterator[OutParam[N, E]]

    Implicit information
    This member is added by an implicit conversion from Cycle to MonadOps[OutParam[N, E]] 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[OutParam[N, E]]).withFilter(p)
    Definition Classes
    MonadOps

Deprecated Value Members

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

    Definition Classes
    GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use fold instead

  2. def x: Cycle

    Implicit information
    This member is added by an implicit conversion from Cycle to ArrowAssoc[Cycle] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (cycle: ArrowAssoc[Cycle]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  3. def x: Cycle

    Implicit information
    This member is added by an implicit conversion from Cycle to Ensuring[Cycle] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (cycle: Ensuring[Cycle]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from Path

Inherited from Traversable[OutParam[N, E]]

Inherited from GenTraversable[OutParam[N, E]]

Inherited from TraversableLike[OutParam[N, E], Traversable[OutParam[N, E]]]

Inherited from GenTraversableLike[OutParam[N, E], Traversable[OutParam[N, E]]]

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

Inherited from TraversableOnce[OutParam[N, E]]

Inherited from GenTraversableOnce[OutParam[N, E]]

Inherited from FilterMonadic[OutParam[N, E], Traversable[OutParam[N, E]]]

Inherited from HasNewBuilder[OutParam[N, E], Traversable[OutParam[N, E]]]

Inherited from AnyRef

Inherited from Any

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

Inherited by implicit conversion traversable2ops from Cycle to TraversableOps[OutParam[N, E]]

Inherited by implicit conversion MonadOps from Cycle to MonadOps[OutParam[N, E]]

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

Inherited by implicit conversion any2stringadd from Cycle to StringAdd

Inherited by implicit conversion any2stringfmt from Cycle to StringFormat

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

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

Inherited by implicit conversion alternateImplicit from Cycle to ForceImplicitAmbiguity

Ungrouped