scalax.collection.GraphTraversal

ExtendedNodeVisitor

trait ExtendedNodeVisitor extends (NodeT) ⇒ VisitorReturn with (NodeT, Int, Int, ⇒ NodeInformer) ⇒ VisitorReturn

Template for extended node visitors. While the default node visitor of the type Function1[NodeT, VisitorReturn] supplies solely the inner node being visited extended node visitors supply the following traversal state information:

  1. the inner node currently visited as with a standard node visitor
  2. the number of nodes visited so far and
  3. the current depth in terms of the underlying algorithm and
  4. a reference to a specific informer that may be pattern matched to collect even further data specific to the implementation.
Linear Supertypes
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ExtendedNodeVisitor
  2. Function4
  3. Function1
  4. AnyRef
  5. Any
Implicitly
  1. by anyToNode
  2. by EdgeAssoc
  3. by orderingToOrdered
  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 apply(v1: NodeT, v2: Int, v3: Int, v4: ⇒ NodeInformer): VisitorReturn

    Definition Classes
    Function4

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 ExtendedNodeVisitor to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (ExtendedNodeVisitor, B)

    Implicit information
    This member is added by an implicit conversion from ExtendedNodeVisitor to ArrowAssoc[ExtendedNodeVisitor] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. def <(that: ExtendedNodeVisitor): Boolean

    Implicit information
    This member is added by an implicit conversion from ExtendedNodeVisitor to Ordered[ExtendedNodeVisitor] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type Ordering[ExtendedNodeVisitor] is in scope.
    Definition Classes
    Ordered
  7. def <=(that: ExtendedNodeVisitor): Boolean

    Implicit information
    This member is added by an implicit conversion from ExtendedNodeVisitor to Ordered[ExtendedNodeVisitor] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type Ordering[ExtendedNodeVisitor] is in scope.
    Definition Classes
    Ordered
  8. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  10. def >(that: ExtendedNodeVisitor): Boolean

    Implicit information
    This member is added by an implicit conversion from ExtendedNodeVisitor to Ordered[ExtendedNodeVisitor] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type Ordering[ExtendedNodeVisitor] is in scope.
    Definition Classes
    Ordered
  11. def >=(that: ExtendedNodeVisitor): Boolean

    Implicit information
    This member is added by an implicit conversion from ExtendedNodeVisitor to Ordered[ExtendedNodeVisitor] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type Ordering[ExtendedNodeVisitor] is in scope.
    Definition Classes
    Ordered
  12. def andThen[A](g: (VisitorReturn) ⇒ A): (NodeT) ⇒ A

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  13. def apply(node: NodeT): VisitorReturn

    Definition Classes
    ExtendedNodeVisitor → Function1
  14. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  15. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. def compare(that: ExtendedNodeVisitor): Int

    Implicit information
    This member is added by an implicit conversion from ExtendedNodeVisitor to Ordered[ExtendedNodeVisitor] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type Ordering[ExtendedNodeVisitor] is in scope.
    Definition Classes
    Ordered
  17. def compareTo(that: ExtendedNodeVisitor): Int

    Implicit information
    This member is added by an implicit conversion from ExtendedNodeVisitor to Ordered[ExtendedNodeVisitor] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type Ordering[ExtendedNodeVisitor] is in scope.
    Definition Classes
    Ordered → Comparable
  18. def compose[A](g: (A) ⇒ NodeT): (A) ⇒ VisitorReturn

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  19. def curried: (NodeT) ⇒ (Int) ⇒ (Int) ⇒ (⇒ NodeInformer) ⇒ VisitorReturn

    Definition Classes
    Function4
    Annotations
    @unspecialized()
  20. def ensuring(cond: (ExtendedNodeVisitor) ⇒ Boolean, msg: ⇒ Any): ExtendedNodeVisitor

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

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

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

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

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. def formatted(fmtstr: String): String

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

    Definition Classes
    AnyRef → Any
  29. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  30. def isDefined: Boolean

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

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

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

    Definition Classes
    Any
  34. def isNode: Boolean

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

    Implicit information
    This member is added by an implicit conversion from ExtendedNodeVisitor to OuterNode[ExtendedNodeVisitor] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  36. val n1: ExtendedNodeVisitor

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

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

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

    Definition Classes
    AnyRef
  40. def stringPrefix: String

    Implicit information
    This member is added by an implicit conversion from ExtendedNodeVisitor to OuterNode[ExtendedNodeVisitor] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  41. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  42. def toString(): String

    Definition Classes
    Function4 → AnyRef → Any
  43. def tupled: ((NodeT, Int, Int, ⇒ NodeInformer)) ⇒ VisitorReturn

    Definition Classes
    Function4
    Annotations
    @unspecialized()
  44. val value: ExtendedNodeVisitor

    Implicit information
    This member is added by an implicit conversion from ExtendedNodeVisitor to OuterNode[ExtendedNodeVisitor] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    OuterNodeNodeParam
  45. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. def ~[N >: N1, N2 <: N](n2: N2): UnDiEdge[N]

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

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

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

Shadowed Implicit Value Members

  1. val self: Any

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

    Implicit information
    This member is added by an implicit conversion from ExtendedNodeVisitor 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:
    (extendedNodeVisitor: StringFormat).self
    Definition Classes
    StringFormat
  3. def toString(): String

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

Deprecated Value Members

  1. def x: ExtendedNodeVisitor

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

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: ExtendedNodeVisitor

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

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from (NodeT, Int, Int, ⇒ NodeInformer) ⇒ VisitorReturn

Inherited from (NodeT) ⇒ VisitorReturn

Inherited from AnyRef

Inherited from Any

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

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

Inherited by implicit conversion orderingToOrdered from ExtendedNodeVisitor to Ordered[ExtendedNodeVisitor]

Inherited by implicit conversion any2stringadd from ExtendedNodeVisitor to StringAdd

Inherited by implicit conversion any2stringfmt from ExtendedNodeVisitor to StringFormat

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

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

Ungrouped