scalax.collection.GraphTraversal

Path

trait Path extends Traversable[OutParam[N, E]]

Represents a path in this graph listing the nodes and connecting edges on it with the following syntax:

path ::= node { edge node }

All nodes and edges on the path are distinct. A path contains at least one node followed by any number of consecutive pairs of an edge and a node. The first element is the start node, the second is an edge with its tail being the start node and its head being the third element etc.

Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Path
  2. Traversable
  3. GenTraversable
  4. GenericTraversableTemplate
  5. TraversableLike
  6. GenTraversableLike
  7. Parallelizable
  8. TraversableOnce
  9. GenTraversableOnce
  10. FilterMonadic
  11. HasNewBuilder
  12. AnyRef
  13. Any
Implicitly
  1. by anyToNode
  2. by traversable2ops
  3. by MonadOps
  4. by EdgeAssoc
  5. by any2stringadd
  6. by any2stringfmt
  7. by any2ArrowAssoc
  8. by any2Ensuring
  9. by alternateImplicit
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type Self = Traversable[OutParam[N, E]]

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

    Definition Classes
    TraversableLike

Abstract Value Members

  1. abstract def edges: Traversable[GraphTraversal.EdgeT]

    All edges of this path in proper order.

  2. abstract def endNode: NodeT

  3. abstract def foreach[U](f: (OutParam[N, E]) ⇒ U): Unit

    Definition Classes
    GenericTraversableTemplate
  4. abstract def isValid: Boolean

    Returns whether the contents of this path are valid with respect to path semantics.

    Returns whether the contents of this path are valid with respect to path semantics. This check is appropriate whenever there may be any doubt about the correctness of the result of an algorithm.

  5. abstract def nodes: Traversable[NodeT]

    All nodes of this path in proper order.

  6. abstract def startNode: NodeT

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 Path to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ++[B >: OutParam[N, E], That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[OutParam[N, E]], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  6. def ++:[B >: OutParam[N, E], That](that: Traversable[B])(implicit bf: CanBuildFrom[Traversable[OutParam[N, E]], B, That]): That

    Definition Classes
    TraversableLike
  7. def ++:[B >: OutParam[N, E], That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[OutParam[N, E]], B, That]): That

    Definition Classes
    TraversableLike
  8. def ->[B](y: B): (Path, B)

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  10. def :\[B](z: B)(op: (OutParam[N, E], B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  11. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  13. def addString(b: StringBuilder): StringBuilder

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

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

    Definition Classes
    TraversableOnce
  16. def aggregate[B](z: B)(seqop: (B, OutParam[N, E]) ⇒ B, combop: (B, B) ⇒ B): B

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

    Definition Classes
    Any
  18. def asParIterable: ParIterable[OutParam[N, E]]

    Implicit information
    This member is added by an implicit conversion from Path to TraversableOps[OutParam[N, E]] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  19. def asParSeq: ParSeq[OutParam[N, E]]

    Implicit information
    This member is added by an implicit conversion from Path to TraversableOps[OutParam[N, E]] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  20. def clone(): AnyRef

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

    Definition Classes
    TraversableLike → GenTraversableLike
  22. def collectFirst[B](pf: PartialFunction[OutParam[N, E], B]): Option[B]

    Definition Classes
    TraversableOnce
  23. def companion: GenericCompanion[Traversable]

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

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  25. def copyToArray[B >: OutParam[N, E]](xs: Array[B]): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  26. def copyToArray[B >: OutParam[N, E]](xs: Array[B], start: Int): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  27. def copyToBuffer[B >: OutParam[N, E]](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  28. def count(p: (OutParam[N, E]) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  29. def drop(n: Int): Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  30. def dropWhile(p: (OutParam[N, E]) ⇒ Boolean): Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  31. def ensuring(cond: (Path) ⇒ Boolean, msg: ⇒ Any): Path

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

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

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

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

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

    Definition Classes
    AnyRef → Any
  37. def exists(p: (OutParam[N, E]) ⇒ Boolean): Boolean

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

    Definition Classes
    TraversableLike → GenTraversableLike
  39. def filterNot(p: (OutParam[N, E]) ⇒ Boolean): Traversable[OutParam[N, E]]

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

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

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  42. def flatMap[B, That](f: (OutParam[N, E]) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[OutParam[N, E]], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  43. def flatten[B](implicit asTraversable: (OutParam[N, E]) ⇒ GenTraversableOnce[B]): Traversable[B]

    Definition Classes
    GenericTraversableTemplate
  44. def fold[A1 >: OutParam[N, E]](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def foldLeft[B](z: B)(op: (B, OutParam[N, E]) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def foldRight[B](z: B)(op: (OutParam[N, E], B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  47. def forall(p: (OutParam[N, E]) ⇒ Boolean): Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  48. def formatted(fmtstr: String): String

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

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

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

    Definition Classes
    TraversableLike → GenTraversableLike
  52. def hasDefiniteSize: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  53. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  54. def head: OutParam[N, E]

    Definition Classes
    TraversableLike → GenTraversableLike
  55. def headOption: Option[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  56. def ifParSeq[R](isbody: (ParSeq[OutParam[N, E]]) ⇒ R): (TraversableOps[OutParam[N, E]])#Otherwise[R]

    Implicit information
    This member is added by an implicit conversion from Path to TraversableOps[OutParam[N, E]] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  57. def init: Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  58. def inits: Iterator[Traversable[OutParam[N, E]]]

    Definition Classes
    TraversableLike
  59. def isDefined: Boolean

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

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

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  62. def isIn: Boolean

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

    Definition Classes
    Any
  64. def isNode: Boolean

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

    Implicit information
    This member is added by an implicit conversion from Path to OuterNode[Path] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  66. def isParIterable: Boolean

    Implicit information
    This member is added by an implicit conversion from Path to TraversableOps[OutParam[N, E]] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  67. def isParSeq: Boolean

    Implicit information
    This member is added by an implicit conversion from Path to TraversableOps[OutParam[N, E]] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  68. def isParallel: Boolean

    Implicit information
    This member is added by an implicit conversion from Path to TraversableOps[OutParam[N, E]] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  69. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  70. def last: OutParam[N, E]

    Definition Classes
    TraversableLike → GenTraversableLike
  71. def lastOption: Option[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  72. def length: Int

    The number of edges on this path.

  73. def map[B, That](f: (OutParam[N, E]) ⇒ B)(implicit bf: CanBuildFrom[Traversable[OutParam[N, E]], B, That]): That

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def mkString: String

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. val n1: Path

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

    Definition Classes
    AnyRef
  83. def newBuilder: Builder[OutParam[N, E], Traversable[OutParam[N, E]]]

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

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

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

    Definition Classes
    AnyRef
  87. def par: ParIterable[OutParam[N, E]]

    Definition Classes
    Parallelizable
  88. def parCombiner: Combiner[OutParam[N, E], ParIterable[OutParam[N, E]]]

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

    Definition Classes
    TraversableLike → GenTraversableLike
  90. def product[B >: OutParam[N, E]](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def reduce[A1 >: OutParam[N, E]](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def reduceLeft[B >: OutParam[N, E]](op: (B, OutParam[N, E]) ⇒ B): B

    Definition Classes
    TraversableOnce
  93. def reduceLeftOption[B >: OutParam[N, E]](op: (B, OutParam[N, E]) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def reduceOption[A1 >: OutParam[N, E]](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def reduceRight[B >: OutParam[N, E]](op: (OutParam[N, E], B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def reduceRightOption[B >: OutParam[N, E]](op: (OutParam[N, E], B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def repr: Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  98. def reversed: List[OutParam[N, E]]

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

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

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

    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.

  102. def seq: Traversable[OutParam[N, E]]

    Definition Classes
    Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  103. def size: Int

    The number of nodes and edges on this path.

    The number of nodes and edges on this path.

    Definition Classes
    Path → GenTraversableLike → TraversableOnce → GenTraversableOnce
  104. def slice(from: Int, until: Int): Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  105. def span(p: (OutParam[N, E]) ⇒ Boolean): (Traversable[OutParam[N, E]], Traversable[OutParam[N, E]])

    Definition Classes
    TraversableLike → GenTraversableLike
  106. def splitAt(n: Int): (Traversable[OutParam[N, E]], Traversable[OutParam[N, E]])

    Definition Classes
    TraversableLike → GenTraversableLike
  107. def stringPrefix: String

    Definition Classes
    Path → TraversableLike → GenTraversableLike
  108. def sum[B >: OutParam[N, E]](implicit num: Numeric[B]): B

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

    Definition Classes
    AnyRef
  110. def tail: Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  111. def tails: Iterator[Traversable[OutParam[N, E]]]

    Definition Classes
    TraversableLike
  112. def take(n: Int): Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  113. def takeWhile(p: (OutParam[N, E]) ⇒ Boolean): Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableLike
  114. def thisCollection: Traversable[OutParam[N, E]]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  115. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, OutParam[N, E], Col[OutParam[N, E]]]): Col[OutParam[N, E]]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  116. def toArray[B >: OutParam[N, E]](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  117. def toBuffer[B >: OutParam[N, E]]: Buffer[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  118. def toCollection(repr: Traversable[OutParam[N, E]]): Traversable[OutParam[N, E]]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  119. def toIndexedSeq: IndexedSeq[OutParam[N, E]]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. def toIterable: Iterable[OutParam[N, E]]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def toIterator: Iterator[OutParam[N, E]]

    Definition Classes
    TraversableLike → GenTraversableOnce
  122. def toList: List[OutParam[N, E]]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. def toMap[T, U](implicit ev: <:<[OutParam[N, E], (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def toParArray: ParArray[OutParam[N, E]]

    Implicit information
    This member is added by an implicit conversion from Path to TraversableOps[OutParam[N, E]] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  125. def toSeq: Seq[OutParam[N, E]]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def toSet[B >: OutParam[N, E]]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def toStream: Stream[OutParam[N, E]]

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

    Definition Classes
    TraversableLike → Any
  129. def toTraversable: Traversable[OutParam[N, E]]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  130. def toVector: Vector[OutParam[N, E]]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  131. def transpose[B](implicit asTraversable: (OutParam[N, E]) ⇒ GenTraversableOnce[B]): Traversable[Traversable[B]]

    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  132. def unzip[A1, A2](implicit asPair: (OutParam[N, E]) ⇒ (A1, A2)): (Traversable[A1], Traversable[A2])

    Definition Classes
    GenericTraversableTemplate
  133. def unzip3[A1, A2, A3](implicit asTriple: (OutParam[N, E]) ⇒ (A1, A2, A3)): (Traversable[A1], Traversable[A2], Traversable[A3])

    Definition Classes
    GenericTraversableTemplate
  134. val value: Path

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

    Definition Classes
    TraversableLike
  136. def view: TraversableView[OutParam[N, E], Traversable[OutParam[N, E]]]

    Definition Classes
    TraversableLike
  137. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  140. def weight: Long

    The cumulated weight of all edges on this path.

  141. def withFilter(p: (OutParam[N, E]) ⇒ Boolean): FilterMonadic[OutParam[N, E], Traversable[OutParam[N, E]]]

    Definition Classes
    TraversableLike → FilterMonadic
  142. def ~[N >: N1, N2 <: N](n2: N2): UnDiEdge[N]

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

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

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

Shadowed Implicit Value Members

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

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

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

    Implicit information
    This member is added by an implicit conversion from Path to MonadOps[OutParam[N, E]] 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:
    (path: MonadOps[OutParam[N, E]]).map(f)
    Definition Classes
    MonadOps
  4. val self: Any

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

    Implicit information
    This member is added by an implicit conversion from Path 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:
    (path: StringFormat).self
    Definition Classes
    StringFormat
  6. def stringPrefix: String

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

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

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

Deprecated Value Members

  1. def /:\[A1 >: OutParam[N, E]](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use fold instead

  2. def x: Path

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

    (Since version 2.10.0) Use leftOfArrow instead

  3. def x: Path

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

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from Traversable[OutParam[N, E]]

Inherited from GenTraversable[OutParam[N, E]]

Inherited from TraversableLike[OutParam[N, E], Traversable[OutParam[N, E]]]

Inherited from GenTraversableLike[OutParam[N, E], Traversable[OutParam[N, E]]]

Inherited from Parallelizable[OutParam[N, E], ParIterable[OutParam[N, E]]]

Inherited from TraversableOnce[OutParam[N, E]]

Inherited from GenTraversableOnce[OutParam[N, E]]

Inherited from FilterMonadic[OutParam[N, E], Traversable[OutParam[N, E]]]

Inherited from HasNewBuilder[OutParam[N, E], Traversable[OutParam[N, E]]]

Inherited from AnyRef

Inherited from Any

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

Inherited by implicit conversion traversable2ops from Path to TraversableOps[OutParam[N, E]]

Inherited by implicit conversion MonadOps from Path to MonadOps[OutParam[N, E]]

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

Inherited by implicit conversion any2stringadd from Path to StringAdd

Inherited by implicit conversion any2stringfmt from Path to StringFormat

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

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

Inherited by implicit conversion alternateImplicit from Path to ForceImplicitAmbiguity

Ungrouped