Packages

c

scalax.collection.GraphTraversal

AbstractTopologicalOrder

sealed abstract class AbstractTopologicalOrder[+A, +T] extends AbstractIterable[T]

Topologically ordered nodes or layers of a topological order of a graph or of an isolated graph component.

A

one of NodeT, N

T

one of A or (Int, Iterable[A])

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AbstractTopologicalOrder
  2. AbstractIterable
  3. Iterable
  4. IterableLike
  5. Equals
  6. GenIterable
  7. GenIterableLike
  8. AbstractTraversable
  9. Traversable
  10. GenTraversable
  11. GenericTraversableTemplate
  12. TraversableLike
  13. GenTraversableLike
  14. Parallelizable
  15. TraversableOnce
  16. GenTraversableOnce
  17. FilterMonadic
  18. HasNewBuilder
  19. AnyRef
  20. Any
Implicitly
  1. by anyToNode
  2. by CollectionsHaveToParArray
  3. by MonadOps
  4. by ChainingOps
  5. by EdgeAssoc
  6. by TraversableEnrichments
  7. by any2stringadd
  8. by StringFormat
  9. by Ensuring
  10. by ArrowAssoc
  11. by alternateImplicit
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Self = Iterable[T]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike

Abstract Value Members

  1. abstract def iterator: Iterator[T]
    Definition Classes
    IterableLike → GenIterableLike
  2. abstract def layerOrdering: GraphTraversal.NodeOrdering
  3. abstract val layers: Layers
    Attributes
    protected
  4. abstract def toA: (NodeT) ⇒ A
    Attributes
    protected
  5. abstract def toLayered: LayeredTopologicalOrder[A]

    Creates a new flavor of this TopologicalOrder or LayeredTopologicalOrder that is traversable for its inner nodes zipped with their layers.

  6. abstract def withLayerOrdering(newOrdering: GraphTraversal.NodeOrdering): AbstractTopologicalOrder[A, T]

    Creates a new flavor of this TopologicalOrder or LayeredTopologicalOrder with nodes ordered by newOrdering within the layers.

    Creates a new flavor of this TopologicalOrder or LayeredTopologicalOrder with nodes ordered by newOrdering within the layers. A layer ordering is also useful to ensure a stable topological order over graph instances.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to any2stringadd[AbstractTopologicalOrder[A, T]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[B >: T, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[T], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  5. def ++:[B >: T, That](that: Traversable[B])(implicit bf: CanBuildFrom[Iterable[T], B, That]): That
    Definition Classes
    TraversableLike
  6. def ++:[B >: T, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[T], B, That]): That
    Definition Classes
    TraversableLike
  7. def ->[B](y: B): (AbstractTopologicalOrder[A, T], B)
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to ArrowAssoc[AbstractTopologicalOrder[A, T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  10. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  11. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  12. def aggregate[B](z: ⇒ B)(seqop: (B, T) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def canEqual(that: Any): Boolean
    Definition Classes
    IterableLike → Equals
  15. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  16. def collect[B, That](pf: PartialFunction[T, B])(implicit bf: CanBuildFrom[Iterable[T], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  17. def collectFirst[B](pf: PartialFunction[T, B]): Option[B]
    Definition Classes
    TraversableOnce
  18. def companion: GenericCompanion[Iterable]
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  19. def copyToArray[B >: T](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  20. def copyToArray[B >: T](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  21. def copyToArray[B >: T](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. def copyToBuffer[B >: T](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  23. def count(p: (T) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  24. def drop(n: Int): Iterable[T]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  25. def dropRight(n: Int): Iterable[T]
    Definition Classes
    IterableLike
  26. def dropWhile(p: (T) ⇒ Boolean): Iterable[T]
    Definition Classes
    TraversableLike → GenTraversableLike
  27. def ensuring(cond: (AbstractTopologicalOrder[A, T]) ⇒ Boolean, msg: ⇒ Any): AbstractTopologicalOrder[A, T]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to Ensuring[AbstractTopologicalOrder[A, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. def ensuring(cond: (AbstractTopologicalOrder[A, T]) ⇒ Boolean): AbstractTopologicalOrder[A, T]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to Ensuring[AbstractTopologicalOrder[A, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: Boolean, msg: ⇒ Any): AbstractTopologicalOrder[A, T]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to Ensuring[AbstractTopologicalOrder[A, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: Boolean): AbstractTopologicalOrder[A, T]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to Ensuring[AbstractTopologicalOrder[A, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. def equals(other: Any): Boolean
    Definition Classes
    AbstractTopologicalOrder → Equals → AnyRef → Any
  33. def exists(p: (T) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  34. def filter(p: (T) ⇒ Boolean): Iterable[T]
    Definition Classes
    TraversableLike → GenTraversableLike
  35. def filterNot(p: (T) ⇒ Boolean): Iterable[T]
    Definition Classes
    TraversableLike → GenTraversableLike
  36. def find(p: (T) ⇒ Boolean): Option[T]
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  37. def flatMap[B, That](f: (T) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[T], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  38. def flatten[B](implicit asTraversable: (T) ⇒ GenTraversableOnce[B]): Iterable[B]
    Definition Classes
    GenericTraversableTemplate
  39. def fold[A1 >: T](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  40. def foldLeft[B](z: B)(op: (B, T) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  41. def foldRight[B](z: B)(op: (T, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  42. def forall(p: (T) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  43. def foreach[U](f: (T) ⇒ U): Unit
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  44. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to StringFormat[AbstractTopologicalOrder[A, T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  45. def genericBuilder[B]: Builder[B, Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
  46. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  47. def groupBy[K](f: (T) ⇒ K): Map[K, Iterable[T]]
    Definition Classes
    TraversableLike → GenTraversableLike
  48. def grouped(size: Int): Iterator[Iterable[T]]
    Definition Classes
    IterableLike
  49. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  50. def hashCode(): Int
    Definition Classes
    AbstractTopologicalOrder → AnyRef → Any
  51. def head: T
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  52. def headOption: Option[T]
    Definition Classes
    TraversableLike → GenTraversableLike
  53. def init: Iterable[T]
    Definition Classes
    TraversableLike → GenTraversableLike
  54. def inits: Iterator[Iterable[T]]
    Definition Classes
    TraversableLike
  55. def isDefined: Boolean
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to OuterNode[AbstractTopologicalOrder[A, T]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  56. final def isEdge: Boolean
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to OuterNode[AbstractTopologicalOrder[A, T]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  57. def isEmpty: Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  58. def isIn: Boolean
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to OuterNode[AbstractTopologicalOrder[A, T]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  59. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  60. def isNode: Boolean
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to OuterNode[AbstractTopologicalOrder[A, T]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  61. final def isOut: Boolean
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to OuterNode[AbstractTopologicalOrder[A, T]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  62. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  63. def last: T
    Definition Classes
    TraversableLike → GenTraversableLike
  64. def lastOption: Option[T]
    Definition Classes
    TraversableLike → GenTraversableLike
  65. def map[B, That](f: (T) ⇒ B)(implicit bf: CanBuildFrom[Iterable[T], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  66. def max[B >: T](implicit cmp: Ordering[B]): T
    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. def maxBy[B](f: (T) ⇒ B)(implicit cmp: Ordering[B]): T
    Definition Classes
    TraversableOnce → GenTraversableOnce
  68. def min[B >: T](implicit cmp: Ordering[B]): T
    Definition Classes
    TraversableOnce → GenTraversableOnce
  69. def minBy[B](f: (T) ⇒ B)(implicit cmp: Ordering[B]): T
    Definition Classes
    TraversableOnce → GenTraversableOnce
  70. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  71. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  72. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. val n1: AbstractTopologicalOrder[A, T]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to EdgeAssoc[AbstractTopologicalOrder[A, T]] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
  74. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  75. def newBuilder: Builder[T, Iterable[T]]
    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  76. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  78. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  79. def nrOfLayers: Int

    The number of layers of this topological order.

  80. def par: ParIterable[T]
    Definition Classes
    Parallelizable
  81. def parCombiner: Combiner[T, ParIterable[T]]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  82. def partition(p: (T) ⇒ Boolean): (Iterable[T], Iterable[T])
    Definition Classes
    TraversableLike → GenTraversableLike
  83. def pipe[B](f: (AbstractTopologicalOrder[A, T]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to ChainingOps[AbstractTopologicalOrder[A, T]] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  84. def product[B >: T](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  85. def reduce[A1 >: T](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def reduceLeft[B >: T](op: (B, T) ⇒ B): B
    Definition Classes
    TraversableOnce
  87. def reduceLeftOption[B >: T](op: (B, T) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  88. def reduceOption[A1 >: T](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def reduceRight[B >: T](op: (T, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  90. def reduceRightOption[B >: T](op: (T, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def repr: Iterable[T]
    Definition Classes
    TraversableLike → GenTraversableLike
  92. def reversed: List[T]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  93. def sameElements[B >: T](that: GenIterable[B]): Boolean
    Definition Classes
    IterableLike → GenIterableLike
  94. def scan[B >: T, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Iterable[T], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  95. def scanLeft[B, That](z: B)(op: (B, T) ⇒ B)(implicit bf: CanBuildFrom[Iterable[T], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  96. def scanRight[B, That](z: B)(op: (T, B) ⇒ B)(implicit bf: CanBuildFrom[Iterable[T], 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.

  97. val self: AbstractTopologicalOrder[A, T]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to ChainingOps[AbstractTopologicalOrder[A, T]] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  98. def seq: Iterable[T]
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  99. def size: Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def sizeHintIfCheap: Int
    Attributes
    protected[scala.collection]
    Definition Classes
    GenTraversableOnce
  101. def slice(from: Int, until: Int): Iterable[T]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  102. def sliding(size: Int, step: Int): Iterator[Iterable[T]]
    Definition Classes
    IterableLike
  103. def sliding(size: Int): Iterator[Iterable[T]]
    Definition Classes
    IterableLike
  104. def span(p: (T) ⇒ Boolean): (Iterable[T], Iterable[T])
    Definition Classes
    TraversableLike → GenTraversableLike
  105. def splitAt(n: Int): (Iterable[T], Iterable[T])
    Definition Classes
    TraversableLike → GenTraversableLike
  106. def stringPrefix: String
    Definition Classes
    AbstractTopologicalOrder → TraversableLike → GenTraversableLike
  107. def sum[B >: T](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  109. val t: AbstractIterable[T]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to TraversableEnrichments[T, AbstractIterable] performed by method TraversableEnrichments in scalax.collection.GraphPredef.
    Definition Classes
    TraversableEnrichments
  110. def tail: Iterable[T]
    Definition Classes
    TraversableLike → GenTraversableLike
  111. def tails: Iterator[Iterable[T]]
    Definition Classes
    TraversableLike
  112. def take(n: Int): Iterable[T]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  113. def takeRight(n: Int): Iterable[T]
    Definition Classes
    IterableLike
  114. def takeWhile(p: (T) ⇒ Boolean): Iterable[T]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  115. def tap[U](f: (AbstractTopologicalOrder[A, T]) ⇒ U): AbstractTopologicalOrder[A, T]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to ChainingOps[AbstractTopologicalOrder[A, T]] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  116. def thisCollection: Iterable[T]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  117. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, T, Col[T]]): Col[T]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  118. def toArray[B >: T](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. def toBuffer[B >: T]: Buffer[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. def toCollection(repr: Iterable[T]): Iterable[T]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  121. def toIndexedSeq: IndexedSeq[T]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  122. def toIterable: Iterable[T]
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  123. def toIterator: Iterator[T]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  124. def toList: List[T]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def toMap[T, U](implicit ev: <:<[T, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def toOuterNodes[E[+X] <: EdgeLike[X]]: Seq[InParam[T, E]]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to TraversableEnrichments[T, AbstractIterable] performed by method TraversableEnrichments in scalax.collection.GraphPredef.
    Definition Classes
    TraversableEnrichments
  127. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to CollectionsHaveToParArray[AbstractTopologicalOrder[A, T], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (AbstractTopologicalOrder[A, T]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  128. def toSeq: Seq[T]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def toSet[B >: T]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def toStream: Stream[T]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  131. def toString(): String
    Definition Classes
    TraversableLike → Any
  132. def toTraversable: Traversable[T]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  133. def toVector: Vector[T]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  134. def transpose[B](implicit asTraversable: (T) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  135. def unzip[A1, A2](implicit asPair: (T) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    GenericTraversableTemplate
  136. def unzip3[A1, A2, A3](implicit asTriple: (T) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    GenericTraversableTemplate
  137. val value: AbstractTopologicalOrder[A, T]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to OuterNode[AbstractTopologicalOrder[A, T]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    OuterNodeNodeParam
  138. def view(from: Int, until: Int): IterableView[T, Iterable[T]]
    Definition Classes
    IterableLike → TraversableLike
  139. def view: IterableView[T, Iterable[T]]
    Definition Classes
    IterableLike → TraversableLike
  140. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  141. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  142. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  143. def withFilter(p: (T) ⇒ Boolean): FilterMonadic[T, Iterable[T]]
    Definition Classes
    TraversableLike → FilterMonadic
  144. def zip[A1 >: T, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Iterable[T], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  145. def zipAll[B, A1 >: T, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Iterable[T], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  146. def zipWithIndex[A1 >: T, That](implicit bf: CanBuildFrom[Iterable[T], (A1, Int), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  147. def ~[N >: N1](n2: N): UnDiEdge[N]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to EdgeAssoc[AbstractTopologicalOrder[A, T]] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  148. def ~>[N >: N1](n2: N): DiEdge[N]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to EdgeAssoc[AbstractTopologicalOrder[A, T]] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  149. def [B](y: B): (AbstractTopologicalOrder[A, T], B)
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to ArrowAssoc[AbstractTopologicalOrder[A, T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def filter(p: (T) ⇒ Boolean): TraversableOnce[T]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to MonadOps[T] 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:
    (abstractTopologicalOrder: MonadOps[T]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: (T) ⇒ GenTraversableOnce[B]): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to MonadOps[T] 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:
    (abstractTopologicalOrder: MonadOps[T]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: (T) ⇒ B): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to MonadOps[T] 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:
    (abstractTopologicalOrder: MonadOps[T]).map(f)
    Definition Classes
    MonadOps
  4. def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to OuterNode[AbstractTopologicalOrder[A, T]] 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:
    (abstractTopologicalOrder: OuterNode[AbstractTopologicalOrder[A, T]]).stringPrefix
    Definition Classes
    NodeParam
  5. def toString(): String
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to OuterNode[AbstractTopologicalOrder[A, T]] 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:
    (abstractTopologicalOrder: OuterNode[AbstractTopologicalOrder[A, T]]).toString()
    Definition Classes
    NodeParam → AnyRef → Any
  6. def withFilter(p: (T) ⇒ Boolean): Iterator[T]
    Implicit
    This member is added by an implicit conversion from AbstractTopologicalOrder[A, T] to MonadOps[T] 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:
    (abstractTopologicalOrder: MonadOps[T]).withFilter(p)
    Definition Classes
    MonadOps

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, T) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

  2. def :\[B](z: B)(op: (T, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldRight instead of :\

  3. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AbstractIterable[T]

Inherited from Iterable[T]

Inherited from IterableLike[T, Iterable[T]]

Inherited from Equals

Inherited from GenIterable[T]

Inherited from GenIterableLike[T, Iterable[T]]

Inherited from AbstractTraversable[T]

Inherited from Traversable[T]

Inherited from GenTraversable[T]

Inherited from TraversableLike[T, Iterable[T]]

Inherited from GenTraversableLike[T, Iterable[T]]

Inherited from Parallelizable[T, ParIterable[T]]

Inherited from TraversableOnce[T]

Inherited from GenTraversableOnce[T]

Inherited from FilterMonadic[T, Iterable[T]]

Inherited from HasNewBuilder[T, Iterable[T] @scala.annotation.unchecked.uncheckedVariance]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion anyToNode from AbstractTopologicalOrder[A, T] to OuterNode[AbstractTopologicalOrder[A, T]]

Inherited by implicit conversion CollectionsHaveToParArray from AbstractTopologicalOrder[A, T] to CollectionsHaveToParArray[AbstractTopologicalOrder[A, T], T]

Inherited by implicit conversion MonadOps from AbstractTopologicalOrder[A, T] to MonadOps[T]

Inherited by implicit conversion ChainingOps from AbstractTopologicalOrder[A, T] to ChainingOps[AbstractTopologicalOrder[A, T]]

Inherited by implicit conversion EdgeAssoc from AbstractTopologicalOrder[A, T] to EdgeAssoc[AbstractTopologicalOrder[A, T]]

Inherited by implicit conversion TraversableEnrichments from AbstractTopologicalOrder[A, T] to TraversableEnrichments[T, AbstractIterable]

Inherited by implicit conversion any2stringadd from AbstractTopologicalOrder[A, T] to any2stringadd[AbstractTopologicalOrder[A, T]]

Inherited by implicit conversion StringFormat from AbstractTopologicalOrder[A, T] to StringFormat[AbstractTopologicalOrder[A, T]]

Inherited by implicit conversion Ensuring from AbstractTopologicalOrder[A, T] to Ensuring[AbstractTopologicalOrder[A, T]]

Inherited by implicit conversion ArrowAssoc from AbstractTopologicalOrder[A, T] to ArrowAssoc[AbstractTopologicalOrder[A, T]]

Inherited by implicit conversion alternateImplicit from AbstractTopologicalOrder[A, T] to ForceImplicitAmbiguity

Ungrouped