scalax.collection.GraphTraversalImpl

InnerNodeTraversalImpl

trait InnerNodeTraversalImpl extends TraverserInnerNode with InnerNodeState

Self Type
NodeT
Linear Supertypes
GraphTraversalImpl.InnerNodeState, GraphTraversalImpl.TraverserInnerNode, GraphTraversalImpl.InnerNode, GraphTraversalImpl.InnerElem, GraphTraversalImpl.Node, Serializable, Serializable, InnerNodeParam[N], NodeParam[N], OutParam[N, Nothing], Param[N, Nothing], AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. InnerNodeTraversalImpl
  2. InnerNodeState
  3. TraverserInnerNode
  4. InnerNode
  5. InnerElem
  6. Node
  7. Serializable
  8. Serializable
  9. InnerNodeParam
  10. NodeParam
  11. OutParam
  12. Param
  13. AnyRef
  14. Any
Implicitly
  1. by anyToNode
  2. by toDefaultTraverser
  3. by EdgeAssoc
  4. by any2stringadd
  5. by any2stringfmt
  6. by any2ArrowAssoc
  7. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def addDiPredecessors(edge: GraphTraversalImpl.EdgeT, add: (NodeT) ⇒ Unit): Unit

    Attributes
    protected[scalax.collection]
    Definition Classes
    InnerNode
  2. abstract def addDiSuccessors(edge: GraphTraversalImpl.EdgeT, add: (NodeT) ⇒ Unit): Unit

    Attributes
    protected[scalax.collection]
    Definition Classes
    InnerNode
  3. abstract def addNeighbors(edge: GraphTraversalImpl.EdgeT, add: (NodeT) ⇒ Unit): Unit

    Attributes
    protected[scalax.collection]
    Definition Classes
    InnerNode
  4. abstract def connectionsWith(other: NodeT): Set[GraphTraversalImpl.EdgeT]

    All edges connecting this node with other including outgoing and incoming edges.

    All edges connecting this node with other including outgoing and incoming edges. This method is useful in case of multigraphs.

    other

    A node which is possibly connected with this node.

    returns

    All edges connecting this node with other. If other equals this node all hooks are returned. If other is not connected with this node an empty set is returned.

    Definition Classes
    InnerNode
  5. abstract def diPredecessors: Set[NodeT]

    All direct predecessors of this node, also called predecessor set or open in-neighborhood: source nodes of directed incident edges and / or adjacent nodes of undirected incident edges excluding this node.

    All direct predecessors of this node, also called predecessor set or open in-neighborhood: source nodes of directed incident edges and / or adjacent nodes of undirected incident edges excluding this node.

    returns

    set of all direct predecessors of this node.

    Definition Classes
    InnerNode
  6. abstract def diSuccessors: Set[NodeT]

    All direct successors of this node, also called successor set or open out-neighborhood: target nodes of directed incident edges and / or adjacent nodes of undirected incident edges excluding this node.

    All direct successors of this node, also called successor set or open out-neighborhood: target nodes of directed incident edges and / or adjacent nodes of undirected incident edges excluding this node.

    returns

    set of all direct successors of this node.

    Definition Classes
    InnerNode
  7. abstract def edges: ExtSet[GraphTraversalImpl.EdgeT]

    All edges at this node - commonly denoted as E(v).

    All edges at this node - commonly denoted as E(v).

    returns

    all edges with at least one end connecting to this node.

    Definition Classes
    InnerNode
  8. abstract def findIncomingFrom(from: NodeT): Option[GraphTraversalImpl.EdgeT]

    An edge at from having this node as a successor.

    An edge at from having this node as a successor.

    from

    The node being at an edge which has this node as a successor.

    returns

    An edges at from having this node as a successor. If from equals this node a hook may be returned. If from is not an adjacent node None is returned.

    Definition Classes
    InnerNode
  9. abstract def findOutgoingTo(to: NodeT): Option[GraphTraversalImpl.EdgeT]

    An outgoing edge connecting this node with to.

    An outgoing edge connecting this node with to.

    to

    The node which is the end point of an edge starting at this node.

    returns

    One of possibly several edges connecting this node with to. If to equals this node a hook may be returned. If to is not an adjacent node None is returned.

    Definition Classes
    InnerNode
  10. abstract def hasOnlyHooks: Boolean

    Checks whether this node has only hooks or no edges at all.

    Checks whether this node has only hooks or no edges at all.

    returns

    true if this node has only hooks or it isolated.

    Definition Classes
    InnerNode
  11. abstract def incoming: Set[GraphTraversalImpl.EdgeT]

    Incoming edges of this node.

    Incoming edges of this node.

    returns

    set of all edges incoming to of this including undirected edges.

    Definition Classes
    InnerNode
  12. abstract def incomingFrom(from: NodeT): Set[GraphTraversalImpl.EdgeT]

    All incoming edges connecting from with this node.

    All incoming edges connecting from with this node.

    from

    The node with zero, one or more edges having this node as a direct successor.

    returns

    All edges at from having this node as a direct successor. If from equals this node all hooks are returned. If from is not an adjacent node an empty set is returned.

    Definition Classes
    InnerNode
  13. abstract def isContaining[N, E[X] <: EdgeLikeIn[X]](g: GraphBase[N, E]): Boolean

    Definition Classes
    InnerNodeParam
  14. abstract def isDirectPredecessorOf(that: NodeT): Boolean

    Whether that is an adjacent (direct successor) to this node.

    Whether that is an adjacent (direct successor) to this node.

    that

    The node to check for adjacency.

    returns

    true if that is adjacent to this node.

    Definition Classes
    InnerNode
  15. abstract def isIndependentOf(that: NodeT): Boolean

    Whether that is independent of this node meaning that there exists no edge connecting this node with that.

    Whether that is independent of this node meaning that there exists no edge connecting this node with that.

    that

    The node to check for independency.

    returns

    true if that node is independent of this node.

    Definition Classes
    InnerNode
  16. abstract def neighbors: Set[NodeT]

    All adjacent nodes (direct successors and predecessors) of this node, also called open neighborhood excluding this node.

    All adjacent nodes (direct successors and predecessors) of this node, also called open neighborhood excluding this node.

    returns

    set of all neighbors.

    Definition Classes
    InnerNode
  17. abstract def outgoing: Set[GraphTraversalImpl.EdgeT]

    All edges outgoing from this node.

    All edges outgoing from this node.

    returns

    set of all edges outgoing from this node including undirected edges and hooks.

    Definition Classes
    InnerNode
  18. abstract def outgoingTo(to: NodeT): Set[GraphTraversalImpl.EdgeT]

    All outgoing edges connecting this node with to.

    All outgoing edges connecting this node with to.

    to

    The node which is the end point of zero, one or more edges starting at this node.

    returns

    All edges connecting this node with to. If to equals this node all hooks are returned. If to is not an adjacent an empty set is returned.

    Definition Classes
    InnerNode
  19. abstract def value: N

    The outer node as supplied by the user at instantiation time or by adding nodes this graph.

    The outer node as supplied by the user at instantiation time or by adding nodes this graph.

    returns

    Reference to the user-supplied outer node.

    Definition Classes
    InnerNodeNodeParam

Concrete Value Members

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

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

    Definition Classes
    Any
  3. final def ##(): Int

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

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (InnerNodeTraversalImpl, B)

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to ArrowAssoc[InnerNodeTraversalImpl] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def <~(from: NodeT): Set[GraphTraversalImpl.EdgeT]

    Synonym for incomingFrom.

    Synonym for incomingFrom.

    Definition Classes
    InnerNode
    Annotations
    @inline()
  7. final def <~: Set[GraphTraversalImpl.EdgeT]

    Synonym for incoming.

    Synonym for incoming.

    Definition Classes
    InnerNode
    Annotations
    @inline()
  8. final def <~?(from: NodeT): Option[GraphTraversalImpl.EdgeT]

    Synonym for findIncomingFrom.

    Synonym for findIncomingFrom.

    Definition Classes
    InnerNode
    Annotations
    @inline()
  9. final def <~|: Set[NodeT]

    Synonym for diPredecessors.

    Synonym for diPredecessors.

    Definition Classes
    InnerNode
    Annotations
    @inline()
  10. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  12. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  13. final def asNodeT[N <: N, E[X] <: EdgeLikeIn[X], G <: GraphBase[N, E] with Singleton](g: G): GraphPredef.InnerNodeParam.asNodeT.G.NodeT

    Attributes
    protected[scalax.collection]
    Definition Classes
    InnerNodeParam
  14. final def asNodeTProjection[N <: N, E[X] <: EdgeLikeIn[X]]: GraphBase.NodeT

    Attributes
    protected[scalax.collection]
    Definition Classes
    InnerNodeParam
  15. final def bit[T](implicit handle: Handle): Boolean

    Attributes
    protected[scalax.collection]
    Definition Classes
    InnerNodeState
    Annotations
    @inline()
  16. final def bit_=[T](isSet: Boolean)(implicit handle: Handle): Unit

    Attributes
    protected[scalax.collection]
    Definition Classes
    InnerNodeState
    Annotations
    @inline()
  17. def canEqual(that: Any): Boolean

    Definition Classes
    InnerNode
  18. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. def degree: Int

    The degree of this node.

    The degree of this node.

    returns

    the number of edges that connect to this node. An edge that connects to this node at more than one ends (loop) is counted as much times as it is connected to this node.

    Definition Classes
    InnerNode
  20. def dumpState: Array[Long]

    Definition Classes
    InnerNodeState
  21. def ensuring(cond: (InnerNodeTraversalImpl) ⇒ Boolean, msg: ⇒ Any): InnerNodeTraversalImpl

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

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

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

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

    Definition Classes
    AnyRef
  26. def equals(other: Any): Boolean

    Definition Classes
    InnerNode → AnyRef → Any
  27. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  28. final def findConnected(pred: (NodeT) ⇒ Boolean)(implicit visitor: (NodeT) ⇒ Unit = emptyVisitor): Option[NodeT]

    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 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 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.
    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
  29. def findCycle(implicit visitor: (NodeT) ⇒ Unit = emptyVisitor): Option[GraphTraversalImpl.Cycle]

    Finds a cycle starting the search at root taking optional filters and visitors into account.

    Finds a cycle starting the search at root taking optional filters and visitors 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.
    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
  30. final def findPredecessor(pred: (NodeT) ⇒ Boolean)(implicit visitor: (NodeT) ⇒ Unit = emptyVisitor): Option[NodeT]

    Finds a predecessor of root for which the predicate pred holds considering all traversal properties passed to the traverser factory method like 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 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.
    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
  31. final def findSuccessor(pred: (NodeT) ⇒ Boolean)(implicit visitor: (NodeT) ⇒ Unit = emptyVisitor): Option[NodeT]

    Finds a successor of root for which the predicate pred holds considering all traversal properties passed to the traverser factory method like 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 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 returden.

    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.
    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
  32. var flags: FlagWord

    Attributes
    protected[scalax.collection.State]
    Definition Classes
    InnerNodeState
  33. var flagsExt: FlagWords

    Attributes
    protected[scalax.collection.State]
    Definition Classes
    InnerNodeState
  34. final def fold[N <: N, E[X] <: EdgeLikeIn[X], G <: GraphBase[N, E] with Singleton, T](g: G)(fa: (GraphPredef.InnerNodeParam.fold.G.NodeT) ⇒ T, fb: (GraphBase.NodeT) ⇒ T): T

    Definition Classes
    InnerNodeParam
  35. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  36. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  37. final def hasPredecessor(potentialPredecessor: NodeT)(implicit visitor: (NodeT) ⇒ Unit = emptyVisitor): Boolean

    Checks whether potentialPredecessor is a predecessor of root considering all traversal properties passed to the traverser factory method like 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 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.

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
    Annotations
    @inline()
  38. final def hasSuccessor(potentialSuccessor: NodeT)(implicit visitor: (NodeT) ⇒ Unit = emptyVisitor): Boolean

    Checks whether potentialSuccessor is a successor of this node considering all traversal properties passed to the traverser factory method like 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 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.

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
    Annotations
    @inline()
  39. def hashCode(): Int

    Definition Classes
    InnerNode → AnyRef → Any
  40. def inDegree: Int

    The incoming degree of this node.

    The incoming degree of this node.

    returns

    the number of edges that come in to this node including undirected edges. Every loop on this node is counted twice.

    Definition Classes
    InnerNode
  41. final def inNeighbors: Set[NodeT]

    Synonym for diPredecessors.

    Synonym for diPredecessors.

    Definition Classes
    InnerNode
    Annotations
    @inline()
  42. final def innerEdgeTraverser(implicit parameters: Parameters = Parameters()): GraphTraversalImpl.InnerEdgeTraverser

    Instantiates an InnerEdgeTraverser which extends scala.collection.Traversable with elements of type EdgeT and sets its root to this node.

    Instantiates an InnerEdgeTraverser which extends scala.collection.Traversable with elements of type EdgeT and sets its root to this node. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    parameters

    The properties controlling subsequent traversals.

    Definition Classes
    TraverserInnerNode
    Annotations
    @inline()
  43. final def innerElemTraverser(implicit parameters: Parameters = Parameters()): GraphTraversalImpl.InnerElemTraverser

    Instantiates an InnerElemTraverser which extends scala.collection.Traversable with elements of type InnerElem and sets its root to this node.

    Instantiates an InnerElemTraverser which extends scala.collection.Traversable with elements of type InnerElem and sets its root to this node. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    parameters

    The properties controlling subsequent traversals.

    Definition Classes
    TraverserInnerNode
    Annotations
    @inline()
  44. final def innerNodeDownUpTraverser(implicit parameters: Parameters = Parameters()): GraphTraversalImpl.InnerNodeDownUpTraverser

    Instantiates an InnerNodeDownUpTraverser which extends scala.collection.Traversable with elements of type (Boolean, NodeT) and sets its root to this node.

    Instantiates an InnerNodeDownUpTraverser which extends scala.collection.Traversable with elements of type (Boolean, NodeT) and sets its root to this node. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    parameters

    The properties controlling subsequent traversals.

    Definition Classes
    TraverserInnerNode
    Annotations
    @inline()
  45. final def innerNodeTraverser(implicit parameters: Parameters = Parameters()): GraphTraversalImpl.InnerNodeTraverser

    Instantiates an InnerNodeTraverser which extends scala.collection.Traversable with elements of type NodeT and sets its root to this node.

    Instantiates an InnerNodeTraverser which extends scala.collection.Traversable with elements of type NodeT and sets its root to this node. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    parameters

    The properties controlling subsequent traversals.

    Definition Classes
    TraverserInnerNode
    Annotations
    @inline()
  46. final def isConnectedWith(potentialConnected: NodeT)(implicit visitor: (NodeT) ⇒ Unit = emptyVisitor): Boolean

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

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
    Annotations
    @inline()
  47. def isDefined: Boolean

    Definition Classes
    Param
  48. def isEdge: Boolean

    Definition Classes
    NodeParam
  49. def isIn: Boolean

    Definition Classes
    OutParamParam
  50. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  51. final def isIsolated: Boolean

    Returns whether this node's degree equals to 0.

    Returns whether this node's degree equals to 0.

    Definition Classes
    InnerNode
    Annotations
    @inline()
  52. final def isLeaf: Boolean

    Returns whether this node's degree equals to 1.

    Returns whether this node's degree equals to 1.

    Definition Classes
    InnerNode
    Annotations
    @inline()
  53. def isNode: Boolean

    Definition Classes
    NodeParam
  54. def isOut: Boolean

    Definition Classes
    OutParamParam
  55. final def isPredecessorOf(potentialSuccessor: NodeT)(implicit visitor: (NodeT) ⇒ Unit = emptyVisitor): Boolean

    Same as hasSuccessor.

    Same as hasSuccessor.

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
    Annotations
    @inline()
  56. final def isSuccessorOf(potentialPredecessor: NodeT)(implicit visitor: (NodeT) ⇒ Unit = emptyVisitor): Boolean

    Same as hasPredecessor.

    Same as hasPredecessor.

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
    Annotations
    @inline()
  57. val n1: InnerNodeTraversalImpl

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

    Definition Classes
    AnyRef
  59. final def notify(): Unit

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

    Definition Classes
    AnyRef
  61. def outDegree: Int

    The outgoing degree of this node.

    The outgoing degree of this node.

    returns

    the number of edges that go out from this node including undirected edges. Every loop on this node is counted twice.

    Definition Classes
    InnerNode
  62. final def outNeighbors: Set[NodeT]

    Synonym for diSuccessors.

    Synonym for diSuccessors.

    Definition Classes
    InnerNode
    Annotations
    @inline()
  63. final def outerEdgeTraverser(implicit parameters: Parameters = Parameters()): GraphTraversalImpl.OuterEdgeTraverser

    Instantiates an OuterEdgeTraverser which extends scala.collection.Traversable with elements of type E[N] and sets its root to this node.

    Instantiates an OuterEdgeTraverser which extends scala.collection.Traversable with elements of type E[N] and sets its root to this node. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    parameters

    The properties controlling subsequent traversals.

    Definition Classes
    TraverserInnerNode
    Annotations
    @inline()
  64. final def outerElemTraverser(implicit parameters: Parameters = Parameters()): GraphTraversalImpl.OuterElemTraverser

    Instantiates an OuterElemTraverser which extends scala.collection.Traversable with elements of type OuterElem and sets its root to this node.

    Instantiates an OuterElemTraverser which extends scala.collection.Traversable with elements of type OuterElem and sets its root to this node. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    parameters

    The properties controlling subsequent traversals.

    Definition Classes
    TraverserInnerNode
    Annotations
    @inline()
  65. final def outerNodeDownUpTraverser(implicit parameters: Parameters = Parameters()): GraphTraversalImpl.OuterNodeDownUpTraverser

    Instantiates an OuterNodeDownUpTraverser which extends scala.collection.Traversable with elements of type (Boolean, N) and sets its root to this node.

    Instantiates an OuterNodeDownUpTraverser which extends scala.collection.Traversable with elements of type (Boolean, N) and sets its root to this node. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    parameters

    The properties controlling subsequent traversals.

    Definition Classes
    TraverserInnerNode
    Annotations
    @inline()
  66. final def outerNodeTraverser(implicit parameters: Parameters = Parameters()): GraphTraversalImpl.OuterNodeTraverser

    Instantiates an OuterNodeTraverser which extends scala.collection.Traversable with elements of type N and sets its root to this node.

    Instantiates an OuterNodeTraverser which extends scala.collection.Traversable with elements of type N and sets its root to this node. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    parameters

    The properties controlling subsequent traversals.

    Definition Classes
    TraverserInnerNode
    Annotations
    @inline()
  67. final def pathTo(potentialSuccessor: NodeT)(implicit visitor: (NodeT) ⇒ Unit = emptyVisitor): Option[GraphTraversalImpl.Path]

    Finds a path from root to potentialSuccessor considering all traversal properties passed to the traverser factory method like 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 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
    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
  68. def pathUntil(pred: (NodeT) ⇒ Boolean)(implicit visitor: (NodeT) ⇒ Unit = emptyVisitor): Option[GraphTraversalImpl.Path]

    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 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 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.
    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
  69. def root: NodeT

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
  70. final def shortestPathTo[T](potentialSuccessor: NodeT, weight: (GraphTraversalImpl.EdgeT) ⇒ T)(implicit arg0: Numeric[T]): Option[GraphTraversalImpl.Path]

    Finds the shortest path from root to potentialSuccessor considering all traversal properties passed to the traverser factory method like 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 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.
    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
    Annotations
    @inline()
  71. final def shortestPathTo(potentialSuccessor: NodeT)(implicit visitor: (NodeT) ⇒ Unit = emptyVisitor): Option[GraphTraversalImpl.Path]

    Finds the shortest path from root to potentialSuccessor considering all traversal properties passed to the traverser factory method like 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 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.
    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
    Annotations
    @inline()
  72. def shortestPathTo[T](potentialSuccessor: NodeT, weight: (GraphTraversalImpl.EdgeT) ⇒ T, visitor: (NodeT) ⇒ Unit)(implicit arg0: Numeric[T]): Option[GraphTraversalImpl.Path]

    Finds the shortest path from root to potentialSuccessor considering all traversal properties passed to the traverser factory method like 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 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.
    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
  73. def stringPrefix: String

    Definition Classes
    NodeParam
  74. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  75. final def toInnerElemTraverser(root: NodeT): GraphTraversalImpl.InnerElemTraverser

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    FluentProperties
  76. final def toNodeT[N <: N, E[X] <: EdgeLikeIn[X], G <: GraphBase[N, E] with Singleton](g: G)(f: (GraphBase.NodeT) ⇒ GraphPredef.InnerNodeParam.toNodeT.G.NodeT): GraphPredef.InnerNodeParam.toNodeT.G.NodeT

    Definition Classes
    InnerNodeParam
  77. def toString(): String

    Definition Classes
    NodeParam → AnyRef → Any
  78. final def visited(implicit handle: Handle): Boolean

    Whether this node is marked as visited with respect to handle.

    Whether this node is marked as visited with respect to handle.

    Attributes
    protected[scalax.collection]
    Definition Classes
    InnerNodeState
    Annotations
    @inline()
  79. final def visited_=(visited: Boolean)(implicit handle: Handle): Unit

    Sets this node to visited with respect to to handle.

    Sets this node to visited with respect to to handle.

    Attributes
    protected[scalax.collection]
    Definition Classes
    InnerNodeState
    Annotations
    @inline()
  80. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  83. final def withDirection(direction: Direction): GraphTraversalImpl.InnerNodeTraverser

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

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

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    FluentProperties
  84. final def withFlagsExt[T](block: (ExtBitSet) ⇒ T): T

    Attributes
    protected
    Definition Classes
    InnerNodeState
    Annotations
    @inline()
  85. final def withKind(kind: Kind): GraphTraversalImpl.InnerNodeTraverser

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

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

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    FluentProperties
  86. final def withMaxDepth(maxDepth: Int): GraphTraversalImpl.InnerNodeTraverser

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

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

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    FluentProperties
  87. final def withOrdering(ordering: GraphTraversalImpl.ElemOrdering): GraphTraversalImpl.InnerNodeTraverser

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

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

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    FluentProperties
  88. final def withParameters(parameters: Parameters): GraphTraversalImpl.InnerNodeTraverser

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

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

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    FluentProperties
  89. final def withRoot(root: NodeT): GraphTraversalImpl.InnerNodeTraverser

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

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

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    TraverserMethods
  90. final def withSubgraph(nodes: (NodeT) ⇒ Boolean = anyNode, edges: (GraphTraversalImpl.EdgeT) ⇒ Boolean = anyEdge): GraphTraversalImpl.InnerNodeTraverser

    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.

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser] performed by method toDefaultTraverser in scalax.collection.GraphTraversal.TraverserInnerNode.
    Definition Classes
    FluentProperties
  91. final def ~: ExtSet[GraphTraversalImpl.EdgeT]

    Synonym for edges.

    Synonym for edges.

    Definition Classes
    InnerNode
    Annotations
    @inline()
  92. final def ~>(to: NodeT): Set[GraphTraversalImpl.EdgeT]

    Synonym for outgoingTo.

    Synonym for outgoingTo.

    Definition Classes
    InnerNode
    Annotations
    @inline()
  93. final def ~>: Set[GraphTraversalImpl.EdgeT]

    Synonym for outgoing.

    Synonym for outgoing.

    Definition Classes
    InnerNode
    Annotations
    @inline()
  94. final def ~>?(to: NodeT): Option[GraphTraversalImpl.EdgeT]

    Synonym for findOutgoingTo.

    Synonym for findOutgoingTo.

    Definition Classes
    InnerNode
    Annotations
    @inline()
  95. final def ~>|: Set[NodeT]

    Synonym for diSuccessors.

    Synonym for diSuccessors.

    Definition Classes
    InnerNode
    Annotations
    @inline()
  96. final def ~|: Set[NodeT]

    Synonym for neighbors.

    Synonym for neighbors.

    Definition Classes
    InnerNode
    Annotations
    @inline()
  97. def [B](y: B): (InnerNodeTraversalImpl, B)

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

Shadowed Implicit Value Members

  1. def isDefined: Boolean

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to OuterNode[InnerNodeTraversalImpl] 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:
    (innerNodeTraversalImpl: OuterNode[InnerNodeTraversalImpl]).isDefined
    Definition Classes
    Param
  2. def isEdge: Boolean

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to OuterNode[InnerNodeTraversalImpl] 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:
    (innerNodeTraversalImpl: OuterNode[InnerNodeTraversalImpl]).isEdge
    Definition Classes
    NodeParam
  3. def isIn: Boolean

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to OuterNode[InnerNodeTraversalImpl] 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:
    (innerNodeTraversalImpl: OuterNode[InnerNodeTraversalImpl]).isIn
    Definition Classes
    InParamParam
  4. def isNode: Boolean

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to OuterNode[InnerNodeTraversalImpl] 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:
    (innerNodeTraversalImpl: OuterNode[InnerNodeTraversalImpl]).isNode
    Definition Classes
    NodeParam
  5. def isOut: Boolean

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to OuterNode[InnerNodeTraversalImpl] 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:
    (innerNodeTraversalImpl: OuterNode[InnerNodeTraversalImpl]).isOut
    Definition Classes
    InParamParam
  6. val self: Any

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

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

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

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to OuterNode[InnerNodeTraversalImpl] 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:
    (innerNodeTraversalImpl: OuterNode[InnerNodeTraversalImpl]).toString()
    Definition Classes
    NodeParam → AnyRef → Any
  10. val value: InnerNodeTraversalImpl

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to OuterNode[InnerNodeTraversalImpl] 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:
    (innerNodeTraversalImpl: OuterNode[InnerNodeTraversalImpl]).value
    Definition Classes
    OuterNodeNodeParam
  11. def ~[N >: N1, N2 <: N](n2: N2): UnDiEdge[N]

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to EdgeAssoc[InnerNodeTraversalImpl] performed by method EdgeAssoc 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:
    (innerNodeTraversalImpl: EdgeAssoc[InnerNodeTraversalImpl]).~(n2)
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  12. def ~>[N >: N1, N2 <: N](n2: N2): DiEdge[N]

    Implicit information
    This member is added by an implicit conversion from InnerNodeTraversalImpl to EdgeAssoc[InnerNodeTraversalImpl] performed by method EdgeAssoc 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:
    (innerNodeTraversalImpl: EdgeAssoc[InnerNodeTraversalImpl]).~>(n2)
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()

Deprecated Value Members

  1. final def traverse(direction: Direction = Successors, nodeFilter: (NodeT) ⇒ Boolean = anyNode, edgeFilter: (GraphTraversalImpl.EdgeT) ⇒ Boolean = anyEdge, breadthFirst: Boolean = true, maxDepth: Int = 0, ordering: GraphTraversalImpl.ElemOrdering = noOrdering)(nodeVisitor: (NodeT) ⇒ VisitorReturn = noNodeAction, edgeVisitor: (GraphTraversalImpl.EdgeT) ⇒ Unit = noEdgeAction): Option[NodeT]

    Traverses this graph starting at this (root) node for side-effects allowing

    Traverses this graph starting at this (root) node for side-effects allowing

    1. to filter nodes and/or edges,
    2. to carry out any side effect at visited nodes and/or edges and
    3. to cancel the traversal at any node.
    direction

    Determines which connected nodes the traversal has to follow. The default value is Successors.

    nodeFilter

    Predicate to filter the nodes to be visited during traversal. The default value is anyNode, that is no filtering. A return of true signals that the traversal is to be canceled. Alternatively, an instance of ExtendedNodeVisitor may be passed to obtain additional state information such as the current depth. The concrete type of the last argument, the informer depends on the underlying implementation so you need to match against it. Concerning this method please match against scalax.collection.GraphTraversalImpl.DfsInformer or scalax.collection.GraphTraversalImpl.BfsInformer depending on the breadthFirst argument.

    edgeFilter

    Predicate to filter the edges to be visited during traversal. The default value is anyEdge meaning that no filtering takes place.

    breadthFirst

    If true the traversal is based on a breath first (BFS, layer-for-layer) search, otherwise on a depth first search (DFS). The default value is BFS.

    maxDepth

    A positive value limiting the number of layers for Bfs respectively the number of consecutive child visits before siblings are visited for Dfs. 0, the default value, indicates that the traversal should have an unlimited depth meaning that it will be continued until either it's canceled or all nodes have been visited.

    ordering

    If a NodeOrdering or EdgeOrdering different from noOrdering is supplied neighbor nodes will be sorted during the traversal. Thus it is guaranteed that the smaller an element's ranking the sooner it will be processed. In case of EdgeOrdering it is guaranteed that the smaller an edge's ranking the sooner its relevant end(s) will be processed.

    nodeVisitor

    Function to be called on visiting a node for the first time during a traversal. It can mutate the node or carry out any other side effect. The default value is the empty function noNodeAction.

    edgeVisitor

    Function to be called on visiting an edge. It can mutate the node or carry out any other side effect. The default value is the empty function noEdgeAction.

    Definition Classes
    TraverserInnerNode
    Annotations
    @deprecated
    Deprecated

    (Since version 1.8.0) use innerElemTraverser or outerElemTraverser instead.

  2. final def traverseDownUp(direction: Direction = Successors, nodeFilter: (NodeT) ⇒ Boolean = anyNode, edgeFilter: (GraphTraversalImpl.EdgeT) ⇒ Boolean = anyEdge, edgeVisitor: (GraphTraversalImpl.EdgeT) ⇒ Unit = noEdgeAction, maxDepth: Int = 0, ordering: GraphTraversalImpl.ElemOrdering = noOrdering)(nodeDown: (NodeT) ⇒ VisitorReturn, nodeUp: (NodeT) ⇒ Unit): Option[NodeT]

    Traverses this graph starting at this node for side-effects using dfs and applying 'down' and 'up' node visitors to allow computations in a stack-wise manner:

    Traverses this graph starting at this node for side-effects using dfs and applying 'down' and 'up' node visitors to allow computations in a stack-wise manner:

    val root = "A"
    val g = Graph(root~>"B1", root~>"B2")
    val result = ListBuffer.empty[String]
    (g get root).traverseDownUp()(
      nodeDown = (n: g.NodeT) => {
        result. += (if (n == root) "{" else "(")
        result. += (n.value)
        Continue
      },
      nodeUp = (n: g.NodeT) =>
        result. += (if (n == root) "}" else ")")
    )
    ("" /: result)(_+_) // yields "{A(B1)(B2)}"
    direction

    Determines which connected nodes the traversal has to follow. The default value is Successors.

    nodeFilter

    Predicate to filter the nodes to be visited during traversal. The default value is anyNode, that is no filtering. A return of true signals that the traversal is to be canceled.

    edgeFilter

    Predicate to filter the edges to be visited during traversal. The default value is anyEdge meaning that no filtering takes place.

    edgeVisitor

    Function to be called on visiting an edge. It can mutate the node or carry out any other side effect. The default value is the empty function noEdgeAction.

    maxDepth

    A positive value limiting the number of layers for Bfs respectively the number of consecutive child visits before siblings are visited for Dfs. 0, the default value, indicates that the traversal should have an unlimited depth meaning that it will be continued until either it's canceled or all nodes have been visited.

    ordering

    If a NodeOrdering or EdgeOrdering different from noOrdering is supplied neighbor nodes will be sorted during the traversal. Thus it is guaranteed that the smaller an element's ranking the sooner it will be processed. In case of EdgeOrdering it is guaranteed that the smaller an edge's ranking the sooner its relevant end(s) will be processed.

    nodeDown

    Function to be called on visiting a node for the first time during a traversal. It can mutate the node or carry out any other side effect. The default value is the empty function noNodeAction. Alternatively, an instance of ExtendedNodeVisitor may be passed to obtain additional state information such as the current depth. The concrete type of the last argument, the informer depends on the underlying implementation so you need to match against it. Concerning this method please match against scalax.collection.GraphTraversalImpl.DfsInformer.

    nodeUp

    Function to be called on reaching an already visited node when moving up in the imaginary tree of a depth first search. Paired with nodeVisitor (the 'down-visitor'), this 'up-visitor' enables a stack-wise view of the traversed nodes. The default value is the empty function noNodeUpAction. Alternatively, an instance of ExtendedNodeVisitor may be passed to obtain additional state information such as the current depth. The concrete type of the last argument, the informer depends on the underlying implementation so you need to match against it. Concerning this method please match against scalax.collection.GraphTraversalImpl.DfsInformer.

    Definition Classes
    TraverserInnerNode
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 1.8.0) use innerNodeDownUpTraverser or outerNodeDownUpTraverser instead.

  3. final def traverseEdges(direction: Direction = Successors, nodeFilter: (NodeT) ⇒ Boolean = anyNode, edgeFilter: (GraphTraversalImpl.EdgeT) ⇒ Boolean = anyEdge, breadthFirst: Boolean = true, maxDepth: Int = 0, ordering: GraphTraversalImpl.ElemOrdering = noOrdering)(edgeVisitor: (GraphTraversalImpl.EdgeT) ⇒ Unit): Option[NodeT]

    Shortcut for calling 'traverse' with a non-default edgeVisitor but the default nodeVisitor allowing a foreach-like call syntax:

    Shortcut for calling 'traverse' with a non-default edgeVisitor but the default nodeVisitor allowing a foreach-like call syntax:

    rootNode traverseEdges() {
    print( if(_.directed) "d" else "u" )
    Continue
    }
    Definition Classes
    TraverserInnerNode
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 1.8.0) use innerEdgeTraverser or outerEdgeTraverser instead.

  4. final def traverseNodes(direction: Direction = Successors, nodeFilter: (NodeT) ⇒ Boolean = anyNode, edgeFilter: (GraphTraversalImpl.EdgeT) ⇒ Boolean = anyEdge, breadthFirst: Boolean = true, maxDepth: Int = 0, ordering: GraphTraversalImpl.ElemOrdering = noOrdering)(nodeVisitor: (NodeT) ⇒ VisitorReturn): Option[NodeT]

    Shortcut for calling traverse with a non-default nodeVisitor and the default edgeVisitor allowing a foreach-like call syntax:

    Shortcut for calling traverse with a non-default nodeVisitor and the default edgeVisitor allowing a foreach-like call syntax:

    rootNode traverseNodes() {
    print("d" + _.degree)
    Continue
    }
    Definition Classes
    TraverserInnerNode
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 1.8.0) use innerNodeTraverser or outerNodeTraverser instead.

  5. def x: InnerNodeTraversalImpl

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

    (Since version 2.10.0) Use leftOfArrow instead

  6. def x: InnerNodeTraversalImpl

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

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from GraphTraversalImpl.InnerNodeState

Inherited from GraphTraversalImpl.TraverserInnerNode

Inherited from GraphTraversalImpl.InnerNode

Inherited from GraphTraversalImpl.InnerElem

Inherited from GraphTraversalImpl.Node

Inherited from Serializable

Inherited from Serializable

Inherited from InnerNodeParam[N]

Inherited from NodeParam[N]

Inherited from OutParam[N, Nothing]

Inherited from Param[N, Nothing]

Inherited from AnyRef

Inherited from Any

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

Inherited by implicit conversion toDefaultTraverser from InnerNodeTraversalImpl to GraphTraversalImpl.TraverserMethods[NodeT, GraphTraversalImpl.InnerNodeTraverser]

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

Inherited by implicit conversion any2stringadd from InnerNodeTraversalImpl to StringAdd

Inherited by implicit conversion any2stringfmt from InnerNodeTraversalImpl to StringFormat

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

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

Ungrouped