scalax.collection.GraphTraversal

Walk

trait Walk extends Traversable[InnerElem]

Represents a walk in this graph where walk ::= node { edge node }

A walk/path contains at least one node followed by any number of consecutive pairs of an edge and a node. The first element is the start node, the second is an edge with its source being the start node and its target being the third element etc.

Linear Supertypes
Traversable[GraphTraversal.InnerElem], GenTraversable[GraphTraversal.InnerElem], GenericTraversableTemplate[GraphTraversal.InnerElem, Traversable], TraversableLike[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]], GenTraversableLike[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]], Parallelizable[GraphTraversal.InnerElem, ParIterable[GraphTraversal.InnerElem]], TraversableOnce[GraphTraversal.InnerElem], GenTraversableOnce[GraphTraversal.InnerElem], FilterMonadic[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]], HasNewBuilder[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]], AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Walk
  2. Traversable
  3. GenTraversable
  4. GenericTraversableTemplate
  5. TraversableLike
  6. GenTraversableLike
  7. Parallelizable
  8. TraversableOnce
  9. GenTraversableOnce
  10. FilterMonadic
  11. HasNewBuilder
  12. AnyRef
  13. 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. trait NodeValidator extends AnyRef

    Attributes
    protected
  2. type Self = Traversable[GraphTraversal.InnerElem]

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

    Definition Classes
    TraversableLike

Abstract Value Members

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

    All edges of this path/walk in proper order.

  2. abstract def endNode: NodeT

  3. abstract def nodes: Traversable[NodeT]

    All nodes on this path/walk in proper order.

  4. abstract def startNode: NodeT

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 Walk to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ++[B >: GraphTraversal.InnerElem, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[GraphTraversal.InnerElem], B, That]): That

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  10. def :\[B](z: B)(op: (GraphTraversal.InnerElem, 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, GraphTraversal.InnerElem) ⇒ B, combop: (B, B) ⇒ B): B

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

    Definition Classes
    Any
  18. def asParIterable: ParIterable[GraphTraversal.InnerElem]

    Implicit information
    This member is added by an implicit conversion from Walk to TraversableOps[GraphTraversal.InnerElem] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  19. def asParSeq: ParSeq[GraphTraversal.InnerElem]

    Implicit information
    This member is added by an implicit conversion from Walk to TraversableOps[GraphTraversal.InnerElem] 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[GraphTraversal.InnerElem, B])(implicit bf: CanBuildFrom[Traversable[GraphTraversal.InnerElem], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  22. def collectFirst[B](pf: PartialFunction[GraphTraversal.InnerElem, B]): Option[B]

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

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

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  25. def copyToArray[B >: GraphTraversal.InnerElem](xs: Array[B]): Unit

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  27. def copyToBuffer[B >: GraphTraversal.InnerElem](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  28. def count(p: (GraphTraversal.InnerElem) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  29. def drop(n: Int): Traversable[GraphTraversal.InnerElem]

    Definition Classes
    TraversableLike → GenTraversableLike
  30. def dropWhile(p: (GraphTraversal.InnerElem) ⇒ Boolean): Traversable[GraphTraversal.InnerElem]

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

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

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

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

    Implicit information
    This member is added by an implicit conversion from Walk to Ensuring[Walk] 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: (GraphTraversal.InnerElem) ⇒ Boolean): Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  38. def filter(p: (GraphTraversal.InnerElem) ⇒ Boolean): Traversable[GraphTraversal.InnerElem]

    Definition Classes
    TraversableLike → GenTraversableLike
  39. def filterNot(p: (GraphTraversal.InnerElem) ⇒ Boolean): Traversable[GraphTraversal.InnerElem]

    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: (GraphTraversal.InnerElem) ⇒ Boolean): Option[GraphTraversal.InnerElem]

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

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  43. def flatten[B](implicit asTraversable: (GraphTraversal.InnerElem) ⇒ GenTraversableOnce[B]): Traversable[B]

    Definition Classes
    GenericTraversableTemplate
  44. def fold[A1 >: GraphTraversal.InnerElem](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def foldLeft[B](z: B)(op: (B, GraphTraversal.InnerElem) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def foldRight[B](z: B)(op: (GraphTraversal.InnerElem, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  47. def forall(p: (GraphTraversal.InnerElem) ⇒ Boolean): Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  48. def foreach[U](f: (GraphTraversal.InnerElem) ⇒ U): Unit

    Definition Classes
    Walk → GenericTraversableTemplate → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  49. def formatted(fmtstr: String): String

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

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

    Definition Classes
    AnyRef → Any
  52. def groupBy[K](f: (GraphTraversal.InnerElem) ⇒ K): Map[K, Traversable[GraphTraversal.InnerElem]]

    Definition Classes
    TraversableLike → GenTraversableLike
  53. def hasDefiniteSize: Boolean

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

    Definition Classes
    AnyRef → Any
  55. def head: GraphTraversal.InnerElem

    Definition Classes
    TraversableLike → GenTraversableLike
  56. def headOption: Option[GraphTraversal.InnerElem]

    Definition Classes
    TraversableLike → GenTraversableLike
  57. def ifParSeq[R](isbody: (ParSeq[GraphTraversal.InnerElem]) ⇒ R): (TraversableOps[GraphTraversal.InnerElem])#Otherwise[R]

    Implicit information
    This member is added by an implicit conversion from Walk to TraversableOps[GraphTraversal.InnerElem] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  58. def init: Traversable[GraphTraversal.InnerElem]

    Definition Classes
    TraversableLike → GenTraversableLike
  59. def inits: Iterator[Traversable[GraphTraversal.InnerElem]]

    Definition Classes
    TraversableLike
  60. def isDefined: Boolean

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

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

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

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

    Definition Classes
    Any
  65. def isNode: Boolean

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

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

    Implicit information
    This member is added by an implicit conversion from Walk to TraversableOps[GraphTraversal.InnerElem] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  68. def isParSeq: Boolean

    Implicit information
    This member is added by an implicit conversion from Walk to TraversableOps[GraphTraversal.InnerElem] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  69. def isParallel: Boolean

    Implicit information
    This member is added by an implicit conversion from Walk to TraversableOps[GraphTraversal.InnerElem] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  70. final def isTraversableAgain: Boolean

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

    Returns whether the nodes and edges of this walk are valid with respect to this graph.

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

  72. def last: GraphTraversal.InnerElem

    Definition Classes
    TraversableLike → GenTraversableLike
  73. def lastOption: Option[GraphTraversal.InnerElem]

    Definition Classes
    TraversableLike → GenTraversableLike
  74. def length: Int

    The number of edges on this path/walk.

  75. def map[B, That](f: (GraphTraversal.InnerElem) ⇒ B)(implicit bf: CanBuildFrom[Traversable[GraphTraversal.InnerElem], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  76. def max[B >: GraphTraversal.InnerElem](implicit cmp: Ordering[B]): GraphTraversal.InnerElem

    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def maxBy[B](f: (GraphTraversal.InnerElem) ⇒ B)(implicit cmp: Ordering[B]): GraphTraversal.InnerElem

    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def min[B >: GraphTraversal.InnerElem](implicit cmp: Ordering[B]): GraphTraversal.InnerElem

    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def minBy[B](f: (GraphTraversal.InnerElem) ⇒ B)(implicit cmp: Ordering[B]): GraphTraversal.InnerElem

    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def mkString: String

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  83. val n1: Walk

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

    Definition Classes
    AnyRef
  85. def newBuilder: Builder[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]]

    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  86. def nodeValidator: NodeValidator

    Attributes
    protected
  87. def nonEmpty: Boolean

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

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

    Definition Classes
    AnyRef
  90. def par: ParIterable[GraphTraversal.InnerElem]

    Definition Classes
    Parallelizable
  91. def parCombiner: Combiner[GraphTraversal.InnerElem, ParIterable[GraphTraversal.InnerElem]]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  92. def partition(p: (GraphTraversal.InnerElem) ⇒ Boolean): (Traversable[GraphTraversal.InnerElem], Traversable[GraphTraversal.InnerElem])

    Definition Classes
    TraversableLike → GenTraversableLike
  93. def product[B >: GraphTraversal.InnerElem](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def reduce[A1 >: GraphTraversal.InnerElem](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def reduceLeft[B >: GraphTraversal.InnerElem](op: (B, GraphTraversal.InnerElem) ⇒ B): B

    Definition Classes
    TraversableOnce
  96. def reduceLeftOption[B >: GraphTraversal.InnerElem](op: (B, GraphTraversal.InnerElem) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def reduceOption[A1 >: GraphTraversal.InnerElem](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def reduceRight[B >: GraphTraversal.InnerElem](op: (GraphTraversal.InnerElem, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def reduceRightOption[B >: GraphTraversal.InnerElem](op: (GraphTraversal.InnerElem, B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def repr: Traversable[GraphTraversal.InnerElem]

    Definition Classes
    TraversableLike → GenTraversableLike
  101. def reversed: List[GraphTraversal.InnerElem]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  102. 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
  103. def scanLeft[B, That](z: B)(op: (B, GraphTraversal.InnerElem) ⇒ B)(implicit bf: CanBuildFrom[Traversable[GraphTraversal.InnerElem], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  104. 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.

  105. def seq: Traversable[GraphTraversal.InnerElem]

    Definition Classes
    Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  106. 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
  107. def slice(from: Int, until: Int): Traversable[GraphTraversal.InnerElem]

    Definition Classes
    TraversableLike → GenTraversableLike
  108. def span(p: (GraphTraversal.InnerElem) ⇒ Boolean): (Traversable[GraphTraversal.InnerElem], Traversable[GraphTraversal.InnerElem])

    Definition Classes
    TraversableLike → GenTraversableLike
  109. def splitAt(n: Int): (Traversable[GraphTraversal.InnerElem], Traversable[GraphTraversal.InnerElem])

    Definition Classes
    TraversableLike → GenTraversableLike
  110. def stringPrefix: String

    Definition Classes
    Walk → TraversableLike → GenTraversableLike
  111. def sum[B >: GraphTraversal.InnerElem](implicit num: Numeric[B]): B

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

    Definition Classes
    AnyRef
  113. def tail: Traversable[GraphTraversal.InnerElem]

    Definition Classes
    TraversableLike → GenTraversableLike
  114. def tails: Iterator[Traversable[GraphTraversal.InnerElem]]

    Definition Classes
    TraversableLike
  115. def take(n: Int): Traversable[GraphTraversal.InnerElem]

    Definition Classes
    TraversableLike → GenTraversableLike
  116. def takeWhile(p: (GraphTraversal.InnerElem) ⇒ Boolean): Traversable[GraphTraversal.InnerElem]

    Definition Classes
    TraversableLike → GenTraversableLike
  117. def thisCollection: Traversable[GraphTraversal.InnerElem]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  118. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, GraphTraversal.InnerElem, Col[GraphTraversal.InnerElem]]): Col[GraphTraversal.InnerElem]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  119. def toArray[B >: GraphTraversal.InnerElem](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. def toBuffer[B >: GraphTraversal.InnerElem]: Buffer[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def toCollection(repr: Traversable[GraphTraversal.InnerElem]): Traversable[GraphTraversal.InnerElem]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  122. def toIndexedSeq: IndexedSeq[GraphTraversal.InnerElem]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. def toIterable: Iterable[GraphTraversal.InnerElem]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def toIterator: Iterator[GraphTraversal.InnerElem]

    Definition Classes
    TraversableLike → GenTraversableOnce
  125. def toList: List[GraphTraversal.InnerElem]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def toMap[T, U](implicit ev: <:<[GraphTraversal.InnerElem, (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def toParArray: ParArray[GraphTraversal.InnerElem]

    Implicit information
    This member is added by an implicit conversion from Walk to TraversableOps[GraphTraversal.InnerElem] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  128. def toSeq: Seq[GraphTraversal.InnerElem]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def toSet[B >: GraphTraversal.InnerElem]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def toStream: Stream[GraphTraversal.InnerElem]

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

    Definition Classes
    TraversableLike → Any
  132. def toTraversable: Traversable[GraphTraversal.InnerElem]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  133. def toVector: Vector[GraphTraversal.InnerElem]

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

  135. def unzip[A1, A2](implicit asPair: (GraphTraversal.InnerElem) ⇒ (A1, A2)): (Traversable[A1], Traversable[A2])

    Definition Classes
    GenericTraversableTemplate
  136. def unzip3[A1, A2, A3](implicit asTriple: (GraphTraversal.InnerElem) ⇒ (A1, A2, A3)): (Traversable[A1], Traversable[A2], Traversable[A3])

    Definition Classes
    GenericTraversableTemplate
  137. val value: Walk

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

    Definition Classes
    TraversableLike
  139. def view: TraversableView[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]]

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  143. 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.

  144. final def weight: Long

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

  145. def withFilter(p: (GraphTraversal.InnerElem) ⇒ Boolean): FilterMonadic[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]]

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

    Implicit information
    This member is added by an implicit conversion from Walk to EdgeAssoc[Walk] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  147. def ~>[N >: N1, N2 <: N](n2: N2): DiEdge[N]

    Implicit information
    This member is added by an implicit conversion from Walk to EdgeAssoc[Walk] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  148. def [B](y: B): (Walk, B)

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

Shadowed Implicit Value Members

  1. def filter(p: (GraphTraversal.InnerElem) ⇒ Boolean): TraversableOnce[GraphTraversal.InnerElem]

    Implicit information
    This member is added by an implicit conversion from Walk 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:
    (walk: MonadOps[GraphTraversal.InnerElem]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: (GraphTraversal.InnerElem) ⇒ GenTraversableOnce[B]): TraversableOnce[B]

    Implicit information
    This member is added by an implicit conversion from Walk 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:
    (walk: MonadOps[GraphTraversal.InnerElem]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: (GraphTraversal.InnerElem) ⇒ B): TraversableOnce[B]

    Implicit information
    This member is added by an implicit conversion from Walk 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:
    (walk: MonadOps[GraphTraversal.InnerElem]).map(f)
    Definition Classes
    MonadOps
  4. val self: Any

    Implicit information
    This member is added by an implicit conversion from Walk 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:
    (walk: StringAdd).self
    Definition Classes
    StringAdd
  5. val self: Any

    Implicit information
    This member is added by an implicit conversion from Walk 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:
    (walk: StringFormat).self
    Definition Classes
    StringFormat
  6. def stringPrefix: String

    Implicit information
    This member is added by an implicit conversion from Walk to OuterNode[Walk] 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:
    (walk: OuterNode[Walk]).stringPrefix
    Definition Classes
    NodeParam
  7. def toString(): String

    Implicit information
    This member is added by an implicit conversion from Walk to OuterNode[Walk] 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:
    (walk: OuterNode[Walk]).toString()
    Definition Classes
    NodeParam → AnyRef → Any
  8. def withFilter(p: (GraphTraversal.InnerElem) ⇒ Boolean): Iterator[GraphTraversal.InnerElem]

    Implicit information
    This member is added by an implicit conversion from Walk 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:
    (walk: MonadOps[GraphTraversal.InnerElem]).withFilter(p)
    Definition Classes
    MonadOps

Deprecated Value Members

  1. def /:\[A1 >: GraphTraversal.InnerElem](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use fold instead

  2. def x: Walk

    Implicit information
    This member is added by an implicit conversion from Walk to ArrowAssoc[Walk] 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:
    (walk: ArrowAssoc[Walk]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  3. def x: Walk

    Implicit information
    This member is added by an implicit conversion from Walk to Ensuring[Walk] 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:
    (walk: Ensuring[Walk]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from Traversable[GraphTraversal.InnerElem]

Inherited from GenTraversable[GraphTraversal.InnerElem]

Inherited from GenericTraversableTemplate[GraphTraversal.InnerElem, Traversable]

Inherited from TraversableLike[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]]

Inherited from GenTraversableLike[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]]

Inherited from Parallelizable[GraphTraversal.InnerElem, ParIterable[GraphTraversal.InnerElem]]

Inherited from TraversableOnce[GraphTraversal.InnerElem]

Inherited from GenTraversableOnce[GraphTraversal.InnerElem]

Inherited from FilterMonadic[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]]

Inherited from HasNewBuilder[GraphTraversal.InnerElem, Traversable[GraphTraversal.InnerElem]]

Inherited from AnyRef

Inherited from Any

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

Inherited by implicit conversion traversable2ops from Walk to TraversableOps[GraphTraversal.InnerElem]

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

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

Inherited by implicit conversion any2stringadd from Walk to StringAdd

Inherited by implicit conversion any2stringfmt from Walk to StringFormat

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

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

Inherited by implicit conversion alternateImplicit from Walk to ForceImplicitAmbiguity

Ungrouped