Packages

trait Path extends Walk

Represents a path in this graph where

path ::= node { edge node }

Nodes and edges on the path are distinct. 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.

Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Path
  2. Walk
  3. Iterable
  4. IterableFactoryDefaults
  5. IterableOps
  6. IterableOnceOps
  7. IterableOnce
  8. AnyRef
  9. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait NodeValidator extends (NodeT) => Boolean
    Attributes
    protected
    Definition Classes
    Walk

Abstract Value Members

  1. abstract def edges: Iterable[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 endNode: NodeT
    Definition Classes
    Walk
  3. abstract def nodes: Iterable[NodeT]

    All nodes on this path/walk in proper order.

    All nodes on this path/walk in proper order.

    Definition Classes
    Walk
  4. 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 Path toany2stringadd[Path] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: GraphTraversal.InnerElem](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. def ->[B](y: B): (Path, B)
    Implicit
    This member is added by an implicit conversion from Path toArrowAssoc[Path] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def addString(b: StringBuilder): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  8. final def addString(b: StringBuilder, sep: String): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  9. def addString(b: StringBuilder, start: String, sep: String, end: String): b.type
    Definition Classes
    IterableOnceOps
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def className: String
    Attributes
    protected
    Definition Classes
    PathWalk → Iterable
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  13. final def coll: Path.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  14. def collect[B](pf: PartialFunction[GraphTraversal.InnerElem, B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  15. def collectFirst[B](pf: PartialFunction[GraphTraversal.InnerElem, B]): Option[B]
    Definition Classes
    IterableOnceOps
  16. def concat[B >: GraphTraversal.InnerElem](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  17. final def containingGraph: GraphTraversal.this.type

    The Graph instance that contains this walk.

    The Graph instance that contains this walk.

    Definition Classes
    Walk
  18. def copyToArray[B >: GraphTraversal.InnerElem](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  19. def copyToArray[B >: GraphTraversal.InnerElem](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  20. def copyToArray[B >: GraphTraversal.InnerElem](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  21. def corresponds[B](that: IterableOnce[B])(p: (GraphTraversal.InnerElem, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  22. def count(p: (GraphTraversal.InnerElem) => Boolean): Int
    Definition Classes
    IterableOnceOps
  23. def drop(n: Int): Iterable[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps → IterableOnceOps
  24. def dropRight(n: Int): Iterable[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps
  25. def dropWhile(p: (GraphTraversal.InnerElem) => Boolean): Iterable[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps → IterableOnceOps
  26. def empty: Iterable[GraphTraversal.InnerElem]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  27. def ensuring(cond: (Path) => Boolean, msg: => Any): Path
    Implicit
    This member is added by an implicit conversion from Path toEnsuring[Path] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. def ensuring(cond: (Path) => Boolean): Path
    Implicit
    This member is added by an implicit conversion from Path toEnsuring[Path] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: Boolean, msg: => Any): Path
    Implicit
    This member is added by an implicit conversion from Path toEnsuring[Path] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: Boolean): Path
    Implicit
    This member is added by an implicit conversion from Path toEnsuring[Path] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  33. def exists(p: (GraphTraversal.InnerElem) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  34. def filter(pred: (GraphTraversal.InnerElem) => Boolean): Iterable[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps → IterableOnceOps
  35. def filterNot(pred: (GraphTraversal.InnerElem) => Boolean): Iterable[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps → IterableOnceOps
  36. def find(p: (GraphTraversal.InnerElem) => Boolean): Option[GraphTraversal.InnerElem]
    Definition Classes
    IterableOnceOps
  37. def flatMap[B](f: (GraphTraversal.InnerElem) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  38. def flatten[B](implicit asIterable: (GraphTraversal.InnerElem) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  39. def fold[A1 >: GraphTraversal.InnerElem](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  40. def foldLeft[B](z: B)(op: (B, GraphTraversal.InnerElem) => B): B
    Definition Classes
    IterableOnceOps
  41. def foldRight[B](z: B)(op: (GraphTraversal.InnerElem, B) => B): B
    Definition Classes
    IterableOnceOps
  42. def forall(p: (GraphTraversal.InnerElem) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  43. def foreach[U](f: (GraphTraversal.InnerElem) => U): Unit
    Definition Classes
    IterableOnceOps
  44. def fromSpecific(coll: IterableOnce[GraphTraversal.InnerElem]): Iterable[GraphTraversal.InnerElem]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  45. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  46. def groupBy[K](f: (GraphTraversal.InnerElem) => K): Map[K, Iterable[GraphTraversal.InnerElem]]
    Definition Classes
    IterableOps
  47. def groupMap[K, B](key: (GraphTraversal.InnerElem) => K)(f: (GraphTraversal.InnerElem) => B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  48. def groupMapReduce[K, B](key: (GraphTraversal.InnerElem) => K)(f: (GraphTraversal.InnerElem) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  49. def grouped(size: Int): Iterator[Iterable[GraphTraversal.InnerElem]]
    Definition Classes
    IterableOps
  50. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  51. def head: GraphTraversal.InnerElem
    Definition Classes
    IterableOps
  52. def headOption: Option[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps
  53. def init: Iterable[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps
  54. def inits: Iterator[Iterable[GraphTraversal.InnerElem]]
    Definition Classes
    IterableOps
  55. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  56. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  57. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  58. 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
  59. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    Iterable → IterableOps
  60. def iterator: Iterator[GraphTraversal.InnerElem]
    Definition Classes
    Walk → IterableOnce
  61. def knownSize: Int
    Definition Classes
    IterableOnce
  62. def last: GraphTraversal.InnerElem
    Definition Classes
    IterableOps
  63. def lastOption: Option[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps
  64. def lazyZip[B](that: Iterable[B]): LazyZip2[GraphTraversal.InnerElem, B, Path.this.type]
    Definition Classes
    Iterable
  65. def length: Int

    The number of edges on this path/walk.

    The number of edges on this path/walk.

    Definition Classes
    Walk
  66. def map[B](f: (GraphTraversal.InnerElem) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  67. def max[B >: GraphTraversal.InnerElem](implicit ord: Ordering[B]): GraphTraversal.InnerElem
    Definition Classes
    IterableOnceOps
  68. def maxBy[B](f: (GraphTraversal.InnerElem) => B)(implicit cmp: Ordering[B]): GraphTraversal.InnerElem
    Definition Classes
    IterableOnceOps
  69. def maxByOption[B](f: (GraphTraversal.InnerElem) => B)(implicit cmp: Ordering[B]): Option[GraphTraversal.InnerElem]
    Definition Classes
    IterableOnceOps
  70. def maxOption[B >: GraphTraversal.InnerElem](implicit ord: Ordering[B]): Option[GraphTraversal.InnerElem]
    Definition Classes
    IterableOnceOps
  71. def min[B >: GraphTraversal.InnerElem](implicit ord: Ordering[B]): GraphTraversal.InnerElem
    Definition Classes
    IterableOnceOps
  72. def minBy[B](f: (GraphTraversal.InnerElem) => B)(implicit cmp: Ordering[B]): GraphTraversal.InnerElem
    Definition Classes
    IterableOnceOps
  73. def minByOption[B](f: (GraphTraversal.InnerElem) => B)(implicit cmp: Ordering[B]): Option[GraphTraversal.InnerElem]
    Definition Classes
    IterableOnceOps
  74. def minOption[B >: GraphTraversal.InnerElem](implicit ord: Ordering[B]): Option[GraphTraversal.InnerElem]
    Definition Classes
    IterableOnceOps
  75. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  76. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  77. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  78. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  79. def newSpecificBuilder: Builder[GraphTraversal.InnerElem, Iterable[GraphTraversal.InnerElem]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  80. def nodeValidator: NodeValidator
    Attributes
    protected
    Definition Classes
    PathWalk
  81. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  82. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  83. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  84. def partition(p: (GraphTraversal.InnerElem) => Boolean): (Iterable[GraphTraversal.InnerElem], Iterable[GraphTraversal.InnerElem])
    Definition Classes
    IterableOps
  85. def partitionMap[A1, A2](f: (GraphTraversal.InnerElem) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  86. def product[B >: GraphTraversal.InnerElem](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  87. def reduce[B >: GraphTraversal.InnerElem](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  88. def reduceLeft[B >: GraphTraversal.InnerElem](op: (B, GraphTraversal.InnerElem) => B): B
    Definition Classes
    IterableOnceOps
  89. def reduceLeftOption[B >: GraphTraversal.InnerElem](op: (B, GraphTraversal.InnerElem) => B): Option[B]
    Definition Classes
    IterableOnceOps
  90. def reduceOption[B >: GraphTraversal.InnerElem](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  91. def reduceRight[B >: GraphTraversal.InnerElem](op: (GraphTraversal.InnerElem, B) => B): B
    Definition Classes
    IterableOnceOps
  92. def reduceRightOption[B >: GraphTraversal.InnerElem](op: (GraphTraversal.InnerElem, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  93. def reversed: Iterable[GraphTraversal.InnerElem]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  94. def scan[B >: GraphTraversal.InnerElem](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  95. def scanLeft[B](z: B)(op: (B, GraphTraversal.InnerElem) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  96. def scanRight[B](z: B)(op: (GraphTraversal.InnerElem, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  97. 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 → IterableOnceOps
  98. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  99. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  100. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  101. def slice(from: Int, until: Int): Iterable[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps → IterableOnceOps
  102. def sliding(size: Int, step: Int): Iterator[Iterable[GraphTraversal.InnerElem]]
    Definition Classes
    IterableOps
  103. def sliding(size: Int): Iterator[Iterable[GraphTraversal.InnerElem]]
    Definition Classes
    IterableOps
  104. def span(p: (GraphTraversal.InnerElem) => Boolean): (Iterable[GraphTraversal.InnerElem], Iterable[GraphTraversal.InnerElem])
    Definition Classes
    IterableOps → IterableOnceOps
  105. def splitAt(n: Int): (Iterable[GraphTraversal.InnerElem], Iterable[GraphTraversal.InnerElem])
    Definition Classes
    IterableOps → IterableOnceOps
  106. def stepper[S <: Stepper[_]](implicit shape: StepperShape[GraphTraversal.InnerElem, S]): S
    Definition Classes
    IterableOnce
  107. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
    Annotations
    @deprecatedOverriding()
  108. def sum[B >: GraphTraversal.InnerElem](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  109. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  110. def tail: Iterable[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps
  111. def tails: Iterator[Iterable[GraphTraversal.InnerElem]]
    Definition Classes
    IterableOps
  112. def take(n: Int): Iterable[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps → IterableOnceOps
  113. def takeRight(n: Int): Iterable[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps
  114. def takeWhile(p: (GraphTraversal.InnerElem) => Boolean): Iterable[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps → IterableOnceOps
  115. def tapEach[U](f: (GraphTraversal.InnerElem) => U): Iterable[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps → IterableOnceOps
  116. def to[C1](factory: Factory[GraphTraversal.InnerElem, C1]): C1
    Definition Classes
    IterableOnceOps
  117. def toArray[B >: GraphTraversal.InnerElem](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  118. final def toBuffer[B >: GraphTraversal.InnerElem]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  119. def toIndexedSeq: IndexedSeq[GraphTraversal.InnerElem]
    Definition Classes
    IterableOnceOps
  120. def toList: List[GraphTraversal.InnerElem]
    Definition Classes
    IterableOnceOps
  121. def toMap[K, V](implicit ev: <:<[GraphTraversal.InnerElem, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  122. def toOuterElems: Iterable[collection.OuterElem[N, E]]
    Definition Classes
    Walk
  123. def toSeq: Seq[GraphTraversal.InnerElem]
    Definition Classes
    IterableOnceOps
  124. def toSet[B >: GraphTraversal.InnerElem]: Set[B]
    Definition Classes
    IterableOnceOps
  125. def toString(): String
    Definition Classes
    Iterable → AnyRef → Any
  126. def toVector: Vector[GraphTraversal.InnerElem]
    Definition Classes
    IterableOnceOps
  127. def transpose[B](implicit asIterable: (GraphTraversal.InnerElem) => Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  128. def unzip[A1, A2](implicit asPair: (GraphTraversal.InnerElem) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  129. def unzip3[A1, A2, A3](implicit asTriple: (GraphTraversal.InnerElem) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  130. def view: View[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps
  131. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  132. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  133. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  134. 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
  135. 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
  136. def withFilter(p: (GraphTraversal.InnerElem) => Boolean): WithFilter[GraphTraversal.InnerElem, Iterable]
    Definition Classes
    IterableOps
  137. def zip[B](that: IterableOnce[B]): Iterable[(GraphTraversal.InnerElem, B)]
    Definition Classes
    IterableOps
  138. def zipAll[A1 >: GraphTraversal.InnerElem, B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  139. def zipWithIndex: Iterable[(GraphTraversal.InnerElem, Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def ++:[B >: GraphTraversal.InnerElem](that: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  2. def /:[B](z: B)(op: (B, GraphTraversal.InnerElem) => B): B
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  3. final def /:[B](z: B)(op: (B, GraphTraversal.InnerElem) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  4. def :\[B](z: B)(op: (GraphTraversal.InnerElem, B) => B): B
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  5. final def :\[B](z: B)(op: (GraphTraversal.InnerElem, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  6. def aggregate[B](z: => B)(seqop: (B, GraphTraversal.InnerElem) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  7. def collectFirst[B](f: PartialFunction[GraphTraversal.InnerElem, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.collectFirst(...) instead

  8. def companion: IterableFactory[Iterable]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  9. def copyToBuffer(dest: Buffer[GraphTraversal.InnerElem]): Unit
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.copyToBuffer(...) instead

  10. final def copyToBuffer[B >: GraphTraversal.InnerElem](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  11. def count(f: (GraphTraversal.InnerElem) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.count(...) instead

  12. def exists(f: (GraphTraversal.InnerElem) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.exists(...) instead

  13. def filter(f: (GraphTraversal.InnerElem) => Boolean): Iterator[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.filter(...) instead

  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  15. def find(p: (GraphTraversal.InnerElem) => Boolean): Option[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  16. def flatMap[B](f: (GraphTraversal.InnerElem) => IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.flatMap instead or consider requiring an Iterable

  17. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  18. def foldLeft[B](z: B)(op: (B, GraphTraversal.InnerElem) => B): B
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  19. def foldRight[B](z: B)(op: (GraphTraversal.InnerElem, B) => B): B
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  20. def forall(f: (GraphTraversal.InnerElem) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.forall(...) instead

  21. def foreach[U](f: (GraphTraversal.InnerElem) => U): Unit
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foreach(...) instead

  22. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Path toStringFormat[Path] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  23. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  24. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  25. def map[B](f: (GraphTraversal.InnerElem) => B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.map instead or consider requiring an Iterable

  26. def max(implicit ord: Ordering[GraphTraversal.InnerElem]): GraphTraversal.InnerElem
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  27. def maxBy[B](f: (GraphTraversal.InnerElem) => B)(implicit cmp: Ordering[B]): GraphTraversal.InnerElem
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.maxBy(...) instead

  28. def min(implicit ord: Ordering[GraphTraversal.InnerElem]): GraphTraversal.InnerElem
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  29. def minBy[B](f: (GraphTraversal.InnerElem) => B)(implicit cmp: Ordering[B]): GraphTraversal.InnerElem
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.minBy(...) instead

  30. def mkString: String
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  31. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  32. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  33. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  34. def product(implicit num: Numeric[GraphTraversal.InnerElem]): GraphTraversal.InnerElem
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  35. def reduce(f: (GraphTraversal.InnerElem, GraphTraversal.InnerElem) => GraphTraversal.InnerElem): GraphTraversal.InnerElem
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduce(...) instead

  36. def reduceLeft(f: (GraphTraversal.InnerElem, GraphTraversal.InnerElem) => GraphTraversal.InnerElem): GraphTraversal.InnerElem
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeft(...) instead

  37. def reduceLeftOption(f: (GraphTraversal.InnerElem, GraphTraversal.InnerElem) => GraphTraversal.InnerElem): Option[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeftOption(...) instead

  38. def reduceOption(f: (GraphTraversal.InnerElem, GraphTraversal.InnerElem) => GraphTraversal.InnerElem): Option[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceOption(...) instead

  39. def reduceRight(f: (GraphTraversal.InnerElem, GraphTraversal.InnerElem) => GraphTraversal.InnerElem): GraphTraversal.InnerElem
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRight(...) instead

  40. def reduceRightOption(f: (GraphTraversal.InnerElem, GraphTraversal.InnerElem) => GraphTraversal.InnerElem): Option[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRightOption(...) instead

  41. final def repr: Iterable[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  42. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  43. def seq: Path.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  44. def size: Int
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  45. def sum(implicit num: Numeric[GraphTraversal.InnerElem]): GraphTraversal.InnerElem
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  46. def to[C1](factory: Factory[GraphTraversal.InnerElem, C1]): C1
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(factory) instead

  47. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  48. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(ArrayBuffer) instead

  49. def toIndexedSeq: IndexedSeq[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  50. final def toIterable: Iterable[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  51. final def toIterable: Path.this.type
    Definition Classes
    Iterable → IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.7) toIterable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  52. def toIterator: Iterator[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

  53. final def toIterator: Iterator[GraphTraversal.InnerElem]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  54. def toList: List[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(List) instead

  55. def toMap[K, V](implicit ev: <:<[GraphTraversal.InnerElem, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Map) instead

  56. def toSeq: Seq[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Seq) instead

  57. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Set) instead

  58. def toStream: Stream[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(LazyList) instead

  59. final def toStream: Stream[GraphTraversal.InnerElem]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  60. final def toTraversable: Traversable[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  61. final def toTraversable: Traversable[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) toTraversable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  62. def toVector: Vector[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Vector) instead

  63. def view(from: Int, until: Int): View[GraphTraversal.InnerElem]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  64. def withFilter(f: (GraphTraversal.InnerElem) => Boolean): Iterator[GraphTraversal.InnerElem]
    Implicit
    This member is added by an implicit conversion from Path toIterableOnceExtensionMethods[GraphTraversal.InnerElem] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (path: IterableOnceExtensionMethods[GraphTraversal.InnerElem]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.withFilter(...) instead

  65. def [B](y: B): (Path, B)
    Implicit
    This member is added by an implicit conversion from Path toArrowAssoc[Path] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Walk

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromPath to IterableOnceExtensionMethods[GraphTraversal.InnerElem]

Inherited by implicit conversion any2stringadd fromPath to any2stringadd[Path]

Inherited by implicit conversion StringFormat fromPath to StringFormat[Path]

Inherited by implicit conversion Ensuring fromPath to Ensuring[Path]

Inherited by implicit conversion ArrowAssoc fromPath to ArrowAssoc[Path]

Ungrouped