Class

scalax.collection.GraphTraversal

OuterNodeDownUpTraverser

Related Doc: package GraphTraversal

Permalink

abstract class OuterNodeDownUpTraverser extends TraverserMethods[(Boolean, N), OuterNodeDownUpTraverser] with Traverser[(Boolean, N), OuterNodeDownUpTraverser]

Controls the properties of outer-node down-up graph traversals. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. OuterNodeDownUpTraverser
  2. Traverser
  3. Traversable
  4. GenTraversable
  5. GenericTraversableTemplate
  6. TraversableLike
  7. GenTraversableLike
  8. Parallelizable
  9. TraversableOnce
  10. GenTraversableOnce
  11. FilterMonadic
  12. HasNewBuilder
  13. Properties
  14. SubgraphProperties
  15. TraverserMethods
  16. FluentProperties
  17. AnyRef
  18. Any
Implicitly
  1. by anyToNode
  2. by CollectionsHaveToParArray
  3. by MonadOps
  4. by EdgeAssoc
  5. by any2stringadd
  6. by StringFormat
  7. by Ensuring
  8. by ArrowAssoc
  9. by alternateImplicit
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new OuterNodeDownUpTraverser()

    Permalink

Type Members

  1. type Self = Traversable[(Boolean, N)]

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

    Permalink
    Definition Classes
    TraversableLike

Abstract Value Members

  1. abstract def apply[U](pred: GraphTraversal.NodeFilter = noNode, visitor: ((Boolean, N)) ⇒ U = empty): Option[NodeT]

    Permalink
    Attributes
    protected
    Definition Classes
    TraverserMethods
  2. abstract def edgeVisitor[U](f: ((Boolean, N)) ⇒ U): (GraphTraversal.EdgeT) ⇒ U

    Permalink
    Attributes
    protected
    Definition Classes
    TraverserMethods
  3. abstract def findCycle[U](implicit visitor: ((Boolean, N)) ⇒ U = empty): Option[Cycle]

    Permalink

    Finds a cycle starting the search at root taking optional properties like subgraph restriction, ordering or maximum depth into account., if any.

    Finds a cycle starting the search at root taking optional properties like subgraph restriction, ordering or maximum depth into account., if any. The resulting cycle may start at any node connected with this node.

    visitor

    An optional function that is applied for its side-effect to every element visited during graph traversal.

    returns

    A cycle or None if either

    1. there exists no cycle in the component depicting by root or
    2. there exists a cycle in the component but due to withSubgraph settings this path was out of scope.
    Definition Classes
    TraverserMethods
  4. abstract def newTraverser: (NodeT, Parameters, GraphTraversal.NodeFilter, GraphTraversal.EdgeFilter, GraphTraversal.ElemOrdering) ⇒ OuterNodeDownUpTraverser

    Permalink
    Attributes
    protected
    Definition Classes
    FluentProperties
  5. abstract def nodeVisitor[U](f: ((Boolean, N)) ⇒ U): (NodeT) ⇒ U

    Permalink
    Attributes
    protected
    Definition Classes
    TraverserMethods
  6. abstract def ordering: GraphTraversal.ElemOrdering

    Permalink

    If a NodeOrdering or EdgeOrdering different from NoOrdering is supplied neighbor nodes will visited during the traversal according to this ordering.

    If a NodeOrdering or EdgeOrdering different from NoOrdering is supplied neighbor nodes will visited during the traversal according to this ordering.

    Definition Classes
    Properties
  7. abstract def parameters: Parameters

    Permalink

    The properties controlling subsequent traversals.

    The properties controlling subsequent traversals.

    Definition Classes
    Properties
  8. abstract def pathUntil[U](pred: GraphTraversal.NodeFilter)(implicit visitor: ((Boolean, N)) ⇒ U = empty): Option[Path]

    Permalink

    Finds a path from root to a successor of root for which pred holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method.

    Finds a path from root to a successor of root for which pred holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method. root itself does not count as a match. This is also true if it has a hook. If several successors exist the algorithm selects any one of these.

    pred

    The predicate which must hold true for the successor.

    visitor

    An optional function that is applied for its side-effect to every element visited during graph traversal.

    returns

    A path to a node with the predicate pred or None if either

    1. there is no node with pred or
    2. there exists no path to such a node or
    3. there exists a path to such a node but due to withSubgraph settings this path was out of scope.
    Definition Classes
    TraverserMethods
  9. abstract def root: NodeT

    Permalink

    The node where subsequent graph traversals start.

    The node where subsequent graph traversals start.

    Definition Classes
    Properties
  10. abstract def shortestPathTo[T, U](potentialSuccessor: NodeT, weight: (GraphTraversal.EdgeT) ⇒ T, visitor: ((Boolean, N)) ⇒ U)(implicit arg0: Numeric[T]): Option[Path]

    Permalink

    Finds the shortest path from root to potentialSuccessor considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method.

    Finds the shortest path from root to potentialSuccessor considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method. The calculation is based on the weight of the edges on the path. Edges have a default weight of 1L that can be overridden by custom edges. A weight function yielding any numeric type may also be passed to shortestPathTo.

    potentialSuccessor

    The node the shortest path is to be found to.

    weight

    Function to determine the weight of edges. If supplied, this function takes precedence over edge weights.

    visitor

    An optional function that is applied for its side-effect to every element visited during graph traversal.

    returns

    The shortest path to potentialSuccessor or None if either

    1. there exists no path to potentialSuccessor or
    2. there exists a path to potentialSuccessor but due to withSubgraph settings this path was out of scope.
    Definition Classes
    TraverserMethods
  11. abstract def subgraphEdges: GraphTraversal.EdgeFilter

    Permalink

    Restricts subsequent graph traversals to walk only along edges that hold this predicate.

    Restricts subsequent graph traversals to walk only along edges that hold this predicate.

    Definition Classes
    SubgraphProperties
  12. abstract def subgraphNodes: GraphTraversal.NodeFilter

    Permalink

    Restricts subsequent graph traversals to visit only nodes holding this predicate.

    Restricts subsequent graph traversals to visit only nodes holding this predicate.

    Definition Classes
    SubgraphProperties
  13. abstract def topologicalSort[U](ignorePredecessors: Boolean = false)(implicit visitor: (GraphTraversal.InnerElem) ⇒ U = empty): CycleNodeOrTopologicalOrder

    Permalink

    Sorts the component designated by the given node topologically.

    Sorts the component designated by the given node topologically. Only nodes connected with this node will be included in the resulting topological order. If the graph is known to be connected choose GraphTraversal#topologicalSort instead. See componentTraverser for more control by means of FluentProperties.

    ignorePredecessors

    If true, the topological sort will be partial in that it will only include successors of root. withSubgraph restricts the successor nodes to be included but not predecessors that will be excluded in total.

    visitor

    Function to be called for each inner node or inner edge visited during the sort.

    Definition Classes
    TraverserMethods

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  5. def ++:[B >: (Boolean, N), That](that: Traversable[B])(implicit bf: CanBuildFrom[Traversable[(Boolean, N)], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  6. def ++:[B >: (Boolean, N), That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[(Boolean, N)], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  7. def ->[B](y: B): (OuterNodeDownUpTraverser, B)

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  9. def :\[B](z: B)(op: ((Boolean, N), B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  10. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def addString(b: StringBuilder): StringBuilder

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

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

    Permalink
    Definition Classes
    TraversableOnce
  14. def aggregate[B](z: ⇒ B)(seqop: (B, (Boolean, N)) ⇒ B, combop: (B, B) ⇒ B): B

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

    Permalink
    Definition Classes
    Any
  16. def clone(): AnyRef

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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  18. def collectFirst[B](pf: PartialFunction[(Boolean, N), B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  19. def companion: GenericCompanion[Traversable]

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

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  21. def copyToArray[B >: (Boolean, N)](xs: Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. def copyToArray[B >: (Boolean, N)](xs: Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  23. def copyToBuffer[B >: (Boolean, N)](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  24. def count(p: ((Boolean, N)) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  25. def drop(n: Int): Traversable[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  26. def dropWhile(p: ((Boolean, N)) ⇒ Boolean): Traversable[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  27. def ensuring(cond: (OuterNodeDownUpTraverser) ⇒ Boolean, msg: ⇒ Any): OuterNodeDownUpTraverser

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  33. def exists(p: ((Boolean, N)) ⇒ Boolean): Boolean

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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  35. def filterNot(p: ((Boolean, N)) ⇒ Boolean): Traversable[(Boolean, N)]

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

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

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  38. final def findConnected[U](pred: GraphTraversal.NodeFilter)(implicit visitor: ((Boolean, N)) ⇒ U = empty): Option[NodeT]

    Permalink

    Finds a node connected with root by any number of edges with any direction for which the predicate pred holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method.

    Finds a node connected with root by any number of edges with any direction for which the predicate pred holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method. For directed or mixed graphs the node to be found is weekly connected with this node. root itself does not count as a match. This is also true if it has a hook. If several connected nodes exist with pred the algorithm selects any one of these.

    pred

    The predicate which must hold true for the resulting node.

    visitor

    An optional function that is applied for its side-effect to every element visited during graph traversal.

    returns

    A node with the predicate pred or None if either

    1. there is no node with pred or
    2. there exists no connection to such a node or
    3. there exists a connection to such a node but due to withSubgraph settings this path was out of scope.
    Definition Classes
    TraverserMethods
  39. final def findPredecessor[U](pred: GraphTraversal.NodeFilter)(implicit visitor: ((Boolean, N)) ⇒ U = empty): Option[NodeT]

    Permalink

    Finds a predecessor of root for which the predicate pred holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method.

    Finds a predecessor of root for which the predicate pred holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method. root itself does not count as a match. This is also true if it has a hook. If several predecessors exist the algorithm selects the first of them found.

    pred

    The predicate which must hold true for the resulting node.

    visitor

    An optional function that is applied for its side-effect to every element visited during graph traversal.

    returns

    A node with the predicate pred or None if either

    1. there is no node with pred or
    2. there exists no path from such a node to this node or
    3. there exists a path from such a node to root but due to withSubgraph settings this path was out of scope.
    Definition Classes
    TraverserMethods
  40. final def findSuccessor[U](pred: GraphTraversal.NodeFilter)(implicit visitor: ((Boolean, N)) ⇒ U = empty): Option[NodeT]

    Permalink

    Finds a successor of root for which the predicate pred holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method.

    Finds a successor of root for which the predicate pred holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method. root itself does not count as a match. This is also true if it has a hook. If several successors holding pred exist any one of them may be returned.

    pred

    The predicate which must hold for the resulting node.

    visitor

    An optional function that is applied for its side-effect to every element visited during graph traversal.

    returns

    A node with the predicate pred or None if either

    1. there is no node with pred or
    2. there exists no path to such a node or
    3. there exists a path to such a node but due to withSubgraph settings this path was out of scope.
    Definition Classes
    TraverserMethods
  41. def flatMap[B, That](f: ((Boolean, N)) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[(Boolean, N)], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  42. def flatten[B](implicit asTraversable: ((Boolean, N)) ⇒ GenTraversableOnce[B]): Traversable[B]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  43. def fold[A1 >: (Boolean, N)](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def foldLeft[B](z: B)(op: (B, (Boolean, N)) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def foldRight[B](z: B)(op: ((Boolean, N), B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def forall(p: ((Boolean, N)) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  47. def foreach[U](f: ((Boolean, N)) ⇒ U): Unit

    Permalink
    Definition Classes
    Traverser → GenericTraversableTemplate → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  48. def formatted(fmtstr: String): String

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

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

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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  52. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  53. final def hasPredecessor[U](potentialPredecessor: NodeT)(implicit visitor: ((Boolean, N)) ⇒ U = empty): Boolean

    Permalink

    Checks whether potentialPredecessor is a predecessor of root considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method.

    Checks whether potentialPredecessor is a predecessor of root considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method. Same as isSuccessorOf.

    potentialPredecessor

    The node which is potentially a predecessor of root.

    visitor

    An optional function that is applied for its side-effect to every element visited during graph traversal.

    returns

    true if a path exists from potentialPredecessor to root and it had not to be excluded due to subgraph properties.

    Definition Classes
    TraverserMethods
    Annotations
    @inline()
  54. final def hasSuccessor[U](potentialSuccessor: NodeT)(implicit visitor: ((Boolean, N)) ⇒ U = empty): Boolean

    Permalink

    Checks whether potentialSuccessor is a successor of this node considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method.

    Checks whether potentialSuccessor is a successor of this node considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method. Same as isPredecessorOf.

    potentialSuccessor

    The node which is potentially a successor of this node.

    visitor

    An optional function that is applied for its side-effect to every element visited during graph traversal.

    returns

    true if a path exists from this node to potentialSuccessor and it had not to be excluded due to a subgraph* restriction.

    Definition Classes
    TraverserMethods
    Annotations
    @inline()
  55. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  56. def head: (Boolean, N)

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  57. def headOption: Option[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  58. def init: Traversable[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  59. def inits: Iterator[Traversable[(Boolean, N)]]

    Permalink
    Definition Classes
    TraversableLike
  60. final def isConnectedWith[U](potentialConnected: NodeT)(implicit visitor: ((Boolean, N)) ⇒ U = empty): Boolean

    Permalink

    Checks whether potentialConnected is a node (not necessarily directly) connected with root by any number of edges with any direction considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method.

    Checks whether potentialConnected is a node (not necessarily directly) connected with root by any number of edges with any direction considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method. For directed or mixed graphs it is satisfactory that potentialConnected is weekly connected with root.

    potentialConnected

    The node which is potentially connected with root.

    visitor

    An optional function that is applied for its side-effect to every element visited during graph traversal.

    returns

    true if a path exists from this node to potentialConnected and it had not to be excluded due to subgraph properties.

    Definition Classes
    TraverserMethods
    Annotations
    @inline()
  61. def isDefined: Boolean

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

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

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  64. def isIn: Boolean

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

    Permalink
    Definition Classes
    Any
  66. def isNode: Boolean

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from OuterNodeDownUpTraverser to OuterNode[OuterNodeDownUpTraverser] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  68. final def isPredecessorOf[U](potentialSuccessor: NodeT)(implicit visitor: ((Boolean, N)) ⇒ U = empty): Boolean

    Permalink

    Same as hasSuccessor.

    Same as hasSuccessor.

    Definition Classes
    TraverserMethods
    Annotations
    @inline()
  69. final def isSuccessorOf[U](potentialPredecessor: NodeT)(implicit visitor: ((Boolean, N)) ⇒ U = empty): Boolean

    Permalink

    Same as hasPredecessor.

    Same as hasPredecessor.

    Definition Classes
    TraverserMethods
    Annotations
    @inline()
  70. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  71. def last: (Boolean, N)

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  72. def lastOption: Option[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  73. def map[B, That](f: ((Boolean, N)) ⇒ B)(implicit bf: CanBuildFrom[Traversable[(Boolean, N)], B, That]): That

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

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

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

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def mkString: String

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

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. val n1: OuterNodeDownUpTraverser

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

    Permalink
    Definition Classes
    AnyRef
  83. def newBuilder: Builder[(Boolean, N), Traversable[(Boolean, N)]]

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

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

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

    Permalink
    Definition Classes
    AnyRef
  87. def par: ParIterable[(Boolean, N)]

    Permalink
    Definition Classes
    Parallelizable
  88. def parCombiner: Combiner[(Boolean, N), ParIterable[(Boolean, N)]]

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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  90. final def pathTo[U](potentialSuccessor: NodeT)(implicit visitor: ((Boolean, N)) ⇒ U = empty): Option[Path]

    Permalink

    Finds a path from root to potentialSuccessor considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method.

    Finds a path from root to potentialSuccessor considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method.

    potentialSuccessor

    The node a path is to be found to.

    visitor

    An optional function that is applied for its side-effect to every element visited during graph traversal.

    returns

    A path to potentialSuccessor or None if either

    1. there is no node with pred or
    2. there exists no path to such a node
    Definition Classes
    TraverserMethods
  91. def product[B >: (Boolean, N)](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def reduce[A1 >: (Boolean, N)](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  93. def reduceLeft[B >: (Boolean, N)](op: (B, (Boolean, N)) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  94. def reduceLeftOption[B >: (Boolean, N)](op: (B, (Boolean, N)) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def reduceOption[A1 >: (Boolean, N)](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def reduceRight[B >: (Boolean, N)](op: ((Boolean, N), B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def reduceRightOption[B >: (Boolean, N)](op: ((Boolean, N), B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def repr: Traversable[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  99. def reversed: List[(Boolean, N)]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  100. def scan[B >: (Boolean, N), That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Traversable[(Boolean, N)], B, That]): That

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

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

    Permalink
    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.

  103. def seq: Traversable[(Boolean, N)]

    Permalink
    Definition Classes
    Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  104. final def shortestPathTo[T](potentialSuccessor: NodeT, weight: (GraphTraversal.EdgeT) ⇒ T)(implicit arg0: Numeric[T]): Option[Path]

    Permalink

    Finds the shortest path from root to potentialSuccessor considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method.

    Finds the shortest path from root to potentialSuccessor considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method. The calculation is based on the weight of the edges on the path. Edges have a default weight of 1L that can be overridden by custom edges. A weight function yielding any numeric type may also be passed to shortestPathTo.

    potentialSuccessor

    The node the shortest path is to be found to.

    weight

    Function to determine the weight of edges. If supplied, this function takes precedence over edge weights.

    returns

    The shortest path to potentialSuccessor or None if either

    1. there exists no path to potentialSuccessor or
    2. there exists a path to potentialSuccessor but due to withSubgraph settings this path was out of scope.
    Definition Classes
    TraverserMethods
    Annotations
    @inline()
  105. final def shortestPathTo[U](potentialSuccessor: NodeT)(implicit visitor: ((Boolean, N)) ⇒ U = empty): Option[Path]

    Permalink

    Finds the shortest path from root to potentialSuccessor considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method.

    Finds the shortest path from root to potentialSuccessor considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with* method. The calculation is based on the weight of the edges on the path. Edges have a default weight of 1L that can be overridden by custom edges. A weight function yielding any numeric type may also be passed to shortestPathTo.

    potentialSuccessor

    The node the shortest path is to be found to.

    visitor

    An optional function that is applied for its side-effect to every element visited during graph traversal.

    returns

    The shortest path to potentialSuccessor or None if either

    1. there exists no path to potentialSuccessor or
    2. there exists a path to potentialSuccessor but due to withSubgraph settings this path was out of scope.
    Definition Classes
    TraverserMethods
    Annotations
    @inline()
  106. def size: Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. def slice(from: Int, until: Int): Traversable[(Boolean, N)]

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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  109. def splitAt(n: Int): (Traversable[(Boolean, N)], Traversable[(Boolean, N)])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  110. def stringPrefix: String

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  111. def sum[B >: (Boolean, N)](implicit num: Numeric[B]): B

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

    Permalink
    Definition Classes
    AnyRef
  113. def tail: Traversable[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  114. def tails: Iterator[Traversable[(Boolean, N)]]

    Permalink
    Definition Classes
    TraversableLike
  115. def take(n: Int): Traversable[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  116. def takeWhile(p: ((Boolean, N)) ⇒ Boolean): Traversable[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  117. def thisCollection: Traversable[(Boolean, N)]

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

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  119. def toArray[B >: (Boolean, N)](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. def toBuffer[B >: (Boolean, N)]: Buffer[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def toCollection(repr: Traversable[(Boolean, N)]): Traversable[(Boolean, N)]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  122. final def toGraph: Graph[N, E]

    Permalink

    Completes a traversal and creates a new connected graph populated with the elements visited.

    Completes a traversal and creates a new connected graph populated with the elements visited.

    Definition Classes
    Traverser
  123. def toIndexedSeq: IndexedSeq[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. final def toInnerElemTraverser(root: NodeT): InnerElemTraverser

    Permalink
    Definition Classes
    FluentProperties
  125. def toIterable: Iterable[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def toIterator: Iterator[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableOnce
  127. def toList: List[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def toMap[T, U](implicit ev: <:<[(Boolean, N), (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def toParArray: ParArray[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from OuterNodeDownUpTraverser to CollectionsHaveToParArray[OuterNodeDownUpTraverser, T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (OuterNodeDownUpTraverser) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  130. def toSeq: Seq[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  131. def toSet[B >: (Boolean, N)]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def toStream: Stream[(Boolean, N)]

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

    Permalink
    Definition Classes
    TraversableLike → Any
  134. def toTraversable: Traversable[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  135. def toVector: Vector[(Boolean, N)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  136. def transpose[B](implicit asTraversable: ((Boolean, N)) ⇒ GenTraversableOnce[B]): Traversable[Traversable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  137. def unzip[A1, A2](implicit asPair: ((Boolean, N)) ⇒ (A1, A2)): (Traversable[A1], Traversable[A2])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  138. def unzip3[A1, A2, A3](implicit asTriple: ((Boolean, N)) ⇒ (A1, A2, A3)): (Traversable[A1], Traversable[A2], Traversable[A3])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  139. val value: OuterNodeDownUpTraverser

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

    Permalink
    Definition Classes
    TraversableLike
  141. def view: TraversableView[(Boolean, N), Traversable[(Boolean, N)]]

    Permalink
    Definition Classes
    TraversableLike
  142. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  145. final def withDirection(direction: Direction): OuterNodeDownUpTraverser

    Permalink

    Creates a new FluentProperties based on this except for an updated direction.

    Creates a new FluentProperties based on this except for an updated direction.

    Definition Classes
    FluentProperties
  146. def withFilter(p: ((Boolean, N)) ⇒ Boolean): FilterMonadic[(Boolean, N), Traversable[(Boolean, N)]]

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  147. final def withKind(kind: Kind): OuterNodeDownUpTraverser

    Permalink

    Creates a new FluentProperties based on this except for an updated kind.

    Creates a new FluentProperties based on this except for an updated kind.

    Definition Classes
    FluentProperties
  148. final def withMaxDepth(maxDepth: Int): OuterNodeDownUpTraverser

    Permalink

    Creates a new FluentProperties based on this except for an updated maxDepth.

    Creates a new FluentProperties based on this except for an updated maxDepth.

    Definition Classes
    FluentProperties
  149. final def withOrdering(ordering: GraphTraversal.ElemOrdering): OuterNodeDownUpTraverser

    Permalink

    Creates a new FluentProperties based on this except for an updated ordering.

    Creates a new FluentProperties based on this except for an updated ordering.

    Definition Classes
    FluentProperties
  150. final def withParameters(parameters: Parameters): OuterNodeDownUpTraverser

    Permalink

    Creates a new FluentProperties based on this except for an updated parameters.

    Creates a new FluentProperties based on this except for an updated parameters.

    Definition Classes
    FluentProperties
  151. final def withRoot(root: NodeT): OuterNodeDownUpTraverser

    Permalink

    Creates a new FluentProperties based on this except for an updated root.

    Creates a new FluentProperties based on this except for an updated root.

    Definition Classes
    TraverserMethods
  152. final def withSubgraph(nodes: GraphTraversal.NodeFilter = anyNode, edges: GraphTraversal.EdgeFilter = anyEdge): OuterNodeDownUpTraverser

    Permalink

    Creates a new FluentProperties based on this except for an updated subgraphNodes and/or subgraphEdges.

    Creates a new FluentProperties based on this except for an updated subgraphNodes and/or subgraphEdges.

    Definition Classes
    FluentProperties
  153. def ~[N >: N1](n2: N): UnDiEdge[N]

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

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

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

Shadowed Implicit Value Members

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

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

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from OuterNodeDownUpTraverser to MonadOps[(Boolean, N)] 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:
    (outerNodeDownUpTraverser: MonadOps[(Boolean, N)]).map(f)
    Definition Classes
    MonadOps
  4. def stringPrefix: String

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from OuterNodeDownUpTraverser to OuterNode[OuterNodeDownUpTraverser] 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:
    (outerNodeDownUpTraverser: OuterNode[OuterNodeDownUpTraverser]).toString()
    Definition Classes
    NodeParam → AnyRef → Any
  6. def withFilter(p: ((Boolean, N)) ⇒ Boolean): Iterator[(Boolean, N)]

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

Inherited from Traversable[(Boolean, N)]

Inherited from GenTraversable[(Boolean, N)]

Inherited from TraversableLike[(Boolean, N), Traversable[(Boolean, N)]]

Inherited from GenTraversableLike[(Boolean, N), Traversable[(Boolean, N)]]

Inherited from Parallelizable[(Boolean, N), ParIterable[(Boolean, N)]]

Inherited from TraversableOnce[(Boolean, N)]

Inherited from GenTraversableOnce[(Boolean, N)]

Inherited from FilterMonadic[(Boolean, N), Traversable[(Boolean, N)]]

Inherited from HasNewBuilder[(Boolean, N), Traversable[(Boolean, N)]]

Inherited from Properties

Inherited from SubgraphProperties

Inherited from AnyRef

Inherited from Any

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

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

Inherited by implicit conversion MonadOps from OuterNodeDownUpTraverser to MonadOps[(Boolean, N)]

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

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

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

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

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

Inherited by implicit conversion alternateImplicit from OuterNodeDownUpTraverser to ForceImplicitAmbiguity

Ungrouped