final class TraversalTrackingExt[A] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TraversalTrackingExt
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new TraversalTrackingExt(iterator: Iterator[A])
Type Members
- type Traversal[A] = Iterator[A]
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def discardPathTracking: Traversal[A]
- Annotations
- @Doc()
- def enablePathTracking: PathAwareTraversal[A]
- Annotations
- @Doc()
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isPathTracking: Boolean
- val iterator: Iterator[A]
- def path: Traversal[Vector[Any]]
retrieve entire path that has been traversed thus far prerequisite: enablePathTracking has been called previously
retrieve entire path that has been traversed thus far prerequisite: enablePathTracking has been called previously
- Annotations
- @Doc()
myTraversal.enablePathTracking.out.out.path.toList
TODO would be nice to preserve the types of the elements, at least if they have a common supertype
Example: - def simplePath: Traversal[A]
- def toString(): String
- Definition Classes
- Any