scalax.collection.GraphTraversal

LayeredTopologicalOrder

final class LayeredTopologicalOrder[+A] extends AbstractTopologicalOrder[A, (Int, Iterable[A])]

Layers of a topological order of a graph or of an isolated graph component. The layers of a topological sort can roughly be defined as follows:

  1. layer 0 contains all nodes having no predecessors,
  2. layer n contains those nodes that have only predecessors in ancestor layers with at least one of them contained in layer n - 1
A

one of NodeT, N

Linear Supertypes
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. LayeredTopologicalOrder
  2. AbstractTopologicalOrder
  3. AbstractTraversable
  4. Traversable
  5. GenTraversable
  6. GenericTraversableTemplate
  7. TraversableLike
  8. GenTraversableLike
  9. Parallelizable
  10. TraversableOnce
  11. GenTraversableOnce
  12. FilterMonadic
  13. HasNewBuilder
  14. AnyRef
  15. 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

Instance Constructors

  1. new LayeredTopologicalOrder(layers: Layers, toA: (NodeT) ⇒ A)(implicit layerOrdering: GraphTraversal.NodeOrdering = ...)

    Attributes
    protected[scalax.collection]

Type Members

  1. type Self = Traversable[(Int, Iterable[A])]

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

    Definition Classes
    TraversableLike

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

    Definition Classes
    TraversableLike → GenTraversableLike
  6. def ++:[B >: (Int, Iterable[A]), That](that: Traversable[B])(implicit bf: CanBuildFrom[Traversable[(Int, Iterable[A])], B, That]): That

    Definition Classes
    TraversableLike
  7. def ++:[B >: (Int, Iterable[A]), That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[(Int, Iterable[A])], B, That]): That

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  10. def :\[B](z: B)(op: ((Int, Iterable[A]), 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, (Int, Iterable[A])) ⇒ B, combop: (B, B) ⇒ B): B

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

    Definition Classes
    Any
  18. def asParIterable: ParIterable[(Int, Iterable[A])]

    Implicit information
    This member is added by an implicit conversion from LayeredTopologicalOrder[A] to TraversableOps[(Int, Iterable[A])] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  19. def asParSeq: ParSeq[(Int, Iterable[A])]

    Implicit information
    This member is added by an implicit conversion from LayeredTopologicalOrder[A] to TraversableOps[(Int, Iterable[A])] 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[(Int, Iterable[A]), B])(implicit bf: CanBuildFrom[Traversable[(Int, Iterable[A])], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  22. def collectFirst[B](pf: PartialFunction[(Int, Iterable[A]), B]): Option[B]

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

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

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  25. def copyToArray[B >: (Int, Iterable[A])](xs: Array[B]): Unit

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  27. def copyToBuffer[B >: (Int, Iterable[A])](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  28. def count(p: ((Int, Iterable[A])) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  29. def drop(n: Int): Traversable[(Int, Iterable[A])]

    Definition Classes
    TraversableLike → GenTraversableLike
  30. def dropWhile(p: ((Int, Iterable[A])) ⇒ Boolean): Traversable[(Int, Iterable[A])]

    Definition Classes
    TraversableLike → GenTraversableLike
  31. def ensuring(cond: (LayeredTopologicalOrder[A]) ⇒ Boolean, msg: ⇒ Any): LayeredTopologicalOrder[A]

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

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

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

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

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

    Definition Classes
    AbstractTopologicalOrder → AnyRef → Any
  37. def exists(p: ((Int, Iterable[A])) ⇒ Boolean): Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  38. def filter(p: ((Int, Iterable[A])) ⇒ Boolean): Traversable[(Int, Iterable[A])]

    Definition Classes
    TraversableLike → GenTraversableLike
  39. def filterNot(p: ((Int, Iterable[A])) ⇒ Boolean): Traversable[(Int, Iterable[A])]

    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: ((Int, Iterable[A])) ⇒ Boolean): Option[(Int, Iterable[A])]

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

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  43. def flatten[B](implicit asTraversable: ((Int, Iterable[A])) ⇒ GenTraversableOnce[B]): Traversable[B]

    Definition Classes
    GenericTraversableTemplate
  44. def fold[A1 >: (Int, Iterable[A])](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def foldLeft[B](z: B)(op: (B, (Int, Iterable[A])) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def foldRight[B](z: B)(op: ((Int, Iterable[A]), B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  47. def forall(p: ((Int, Iterable[A])) ⇒ Boolean): Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  48. def foreach[U](f: ((Int, Iterable[A])) ⇒ U): Unit

    Definition Classes
    LayeredTopologicalOrder → GenericTraversableTemplate → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  49. def formatted(fmtstr: String): String

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

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

    Definition Classes
    AnyRef → Any
  52. def groupBy[K](f: ((Int, Iterable[A])) ⇒ K): Map[K, Traversable[(Int, Iterable[A])]]

    Definition Classes
    TraversableLike → GenTraversableLike
  53. def hasDefiniteSize: Boolean

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

    Definition Classes
    AbstractTopologicalOrder → AnyRef → Any
  55. def head: (Int, Iterable[A])

    Definition Classes
    TraversableLike → GenTraversableLike
  56. def headOption: Option[(Int, Iterable[A])]

    Definition Classes
    TraversableLike → GenTraversableLike
  57. def ifParSeq[R](isbody: (ParSeq[(Int, Iterable[A])]) ⇒ R): (TraversableOps[(Int, Iterable[A])])#Otherwise[R]

    Implicit information
    This member is added by an implicit conversion from LayeredTopologicalOrder[A] to TraversableOps[(Int, Iterable[A])] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  58. def init: Traversable[(Int, Iterable[A])]

    Definition Classes
    TraversableLike → GenTraversableLike
  59. def inits: Iterator[Traversable[(Int, Iterable[A])]]

    Definition Classes
    TraversableLike
  60. def isDefined: Boolean

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

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

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

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

    Definition Classes
    Any
  65. def isNode: Boolean

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

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

    Implicit information
    This member is added by an implicit conversion from LayeredTopologicalOrder[A] to TraversableOps[(Int, Iterable[A])] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  68. def isParSeq: Boolean

    Implicit information
    This member is added by an implicit conversion from LayeredTopologicalOrder[A] to TraversableOps[(Int, Iterable[A])] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  69. def isParallel: Boolean

    Implicit information
    This member is added by an implicit conversion from LayeredTopologicalOrder[A] to TraversableOps[(Int, Iterable[A])] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  70. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  71. def last: (Int, Iterable[A])

    Definition Classes
    TraversableLike → GenTraversableLike
  72. def lastOption: Option[(Int, Iterable[A])]

    Definition Classes
    TraversableLike → GenTraversableLike
  73. implicit val layerOrdering: GraphTraversal.NodeOrdering

  74. val layers: Layers

    Attributes
    protected
    Definition Classes
    LayeredTopologicalOrderAbstractTopologicalOrder
  75. def map[B, That](f: ((Int, Iterable[A])) ⇒ B)(implicit bf: CanBuildFrom[Traversable[(Int, Iterable[A])], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  76. def max[B >: (Int, Iterable[A])](implicit cmp: Ordering[B]): (Int, Iterable[A])

    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def maxBy[B](f: ((Int, Iterable[A])) ⇒ B)(implicit cmp: Ordering[B]): (Int, Iterable[A])

    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def min[B >: (Int, Iterable[A])](implicit cmp: Ordering[B]): (Int, Iterable[A])

    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def minBy[B](f: ((Int, Iterable[A])) ⇒ B)(implicit cmp: Ordering[B]): (Int, Iterable[A])

    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def mkString: String

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  83. val n1: LayeredTopologicalOrder[A]

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

    Definition Classes
    AnyRef
  85. def newBuilder: Builder[(Int, Iterable[A]), Traversable[(Int, Iterable[A])]]

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

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

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

    Definition Classes
    AnyRef
  89. def nrOfLayers: Int

    The number of layers of this topological order.

    The number of layers of this topological order.

    Definition Classes
    AbstractTopologicalOrder
  90. def ordered(nodes: IndexedSeq[NodeT]): IndexedSeq[NodeT]

    Attributes
    protected
    Definition Classes
    AbstractTopologicalOrder
  91. def par: ParIterable[(Int, Iterable[A])]

    Definition Classes
    Parallelizable
  92. def parCombiner: Combiner[(Int, Iterable[A]), ParIterable[(Int, Iterable[A])]]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  93. def partition(p: ((Int, Iterable[A])) ⇒ Boolean): (Traversable[(Int, Iterable[A])], Traversable[(Int, Iterable[A])])

    Definition Classes
    TraversableLike → GenTraversableLike
  94. def product[B >: (Int, Iterable[A])](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def reduce[A1 >: (Int, Iterable[A])](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def reduceLeft[B >: (Int, Iterable[A])](op: (B, (Int, Iterable[A])) ⇒ B): B

    Definition Classes
    TraversableOnce
  97. def reduceLeftOption[B >: (Int, Iterable[A])](op: (B, (Int, Iterable[A])) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def reduceOption[A1 >: (Int, Iterable[A])](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def reduceRight[B >: (Int, Iterable[A])](op: ((Int, Iterable[A]), B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def reduceRightOption[B >: (Int, Iterable[A])](op: ((Int, Iterable[A]), B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def repr: Traversable[(Int, Iterable[A])]

    Definition Classes
    TraversableLike → GenTraversableLike
  102. def reversed: List[(Int, Iterable[A])]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  103. def scan[B >: (Int, Iterable[A]), That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Traversable[(Int, Iterable[A])], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  104. def scanLeft[B, That](z: B)(op: (B, (Int, Iterable[A])) ⇒ B)(implicit bf: CanBuildFrom[Traversable[(Int, Iterable[A])], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  105. def scanRight[B, That](z: B)(op: ((Int, Iterable[A]), B) ⇒ B)(implicit bf: CanBuildFrom[Traversable[(Int, Iterable[A])], 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.

  106. def seq: Traversable[(Int, Iterable[A])]

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. def slice(from: Int, until: Int): Traversable[(Int, Iterable[A])]

    Definition Classes
    TraversableLike → GenTraversableLike
  109. def span(p: ((Int, Iterable[A])) ⇒ Boolean): (Traversable[(Int, Iterable[A])], Traversable[(Int, Iterable[A])])

    Definition Classes
    TraversableLike → GenTraversableLike
  110. def splitAt(n: Int): (Traversable[(Int, Iterable[A])], Traversable[(Int, Iterable[A])])

    Definition Classes
    TraversableLike → GenTraversableLike
  111. def stringPrefix: String

    Definition Classes
    AbstractTopologicalOrder → TraversableLike → GenTraversableLike
  112. def sum[B >: (Int, Iterable[A])](implicit num: Numeric[B]): B

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

    Definition Classes
    AnyRef
  114. def tail: Traversable[(Int, Iterable[A])]

    Definition Classes
    TraversableLike → GenTraversableLike
  115. def tails: Iterator[Traversable[(Int, Iterable[A])]]

    Definition Classes
    TraversableLike
  116. def take(n: Int): Traversable[(Int, Iterable[A])]

    Definition Classes
    TraversableLike → GenTraversableLike
  117. def takeWhile(p: ((Int, Iterable[A])) ⇒ Boolean): Traversable[(Int, Iterable[A])]

    Definition Classes
    TraversableLike → GenTraversableLike
  118. def thisCollection: Traversable[(Int, Iterable[A])]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  119. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (Int, Iterable[A]), Col[(Int, Iterable[A])]]): Col[(Int, Iterable[A])]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  120. val toA: (NodeT) ⇒ A

    Attributes
    protected
    Definition Classes
    LayeredTopologicalOrderAbstractTopologicalOrder
  121. def toArray[B >: (Int, Iterable[A])](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  122. def toBuffer[B >: (Int, Iterable[A])]: Buffer[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. def toCollection(repr: Traversable[(Int, Iterable[A])]): Traversable[(Int, Iterable[A])]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  124. def toIndexedSeq: IndexedSeq[(Int, Iterable[A])]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def toIterable: Iterable[(Int, Iterable[A])]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def toIterator: Iterator[(Int, Iterable[A])]

    Definition Classes
    TraversableLike → GenTraversableOnce
  127. def toLayered: LayeredTopologicalOrder[A]

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

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

    Definition Classes
    LayeredTopologicalOrderAbstractTopologicalOrder
  128. def toList: List[(Int, Iterable[A])]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def toMap[T, U](implicit ev: <:<[(Int, Iterable[A]), (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def toOuter: LayeredTopologicalOrder[N]

  131. def toParArray: ParArray[(Int, Iterable[A])]

    Implicit information
    This member is added by an implicit conversion from LayeredTopologicalOrder[A] to TraversableOps[(Int, Iterable[A])] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  132. def toSeq: Seq[(Int, Iterable[A])]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def toSet[B >: (Int, Iterable[A])]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  134. def toStream: Stream[(Int, Iterable[A])]

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

    Definition Classes
    TraversableLike → Any
  136. def toTraversable: Traversable[(Int, Iterable[A])]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  137. def toVector: Vector[(Int, Iterable[A])]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  138. def transpose[B](implicit asTraversable: ((Int, Iterable[A])) ⇒ 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.

  139. def unzip[A1, A2](implicit asPair: ((Int, Iterable[A])) ⇒ (A1, A2)): (Traversable[A1], Traversable[A2])

    Definition Classes
    GenericTraversableTemplate
  140. def unzip3[A1, A2, A3](implicit asTriple: ((Int, Iterable[A])) ⇒ (A1, A2, A3)): (Traversable[A1], Traversable[A2], Traversable[A3])

    Definition Classes
    GenericTraversableTemplate
  141. val value: LayeredTopologicalOrder[A]

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

    Definition Classes
    TraversableLike
  143. def view: TraversableView[(Int, Iterable[A]), Traversable[(Int, Iterable[A])]]

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  147. def withFilter(p: ((Int, Iterable[A])) ⇒ Boolean): FilterMonadic[(Int, Iterable[A]), Traversable[(Int, Iterable[A])]]

    Definition Classes
    TraversableLike → FilterMonadic
  148. def withLayerOrdering(newOrdering: GraphTraversal.NodeOrdering): LayeredTopologicalOrder[A]

    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.

    Definition Classes
    LayeredTopologicalOrderAbstractTopologicalOrder
  149. def ~[N >: N1](n2: N): UnDiEdge[N]

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

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

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

Shadowed Implicit Value Members

  1. def filter(p: ((Int, Iterable[A])) ⇒ Boolean): TraversableOnce[(Int, Iterable[A])]

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

    Implicit information
    This member is added by an implicit conversion from LayeredTopologicalOrder[A] to MonadOps[(Int, Iterable[A])] 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:
    (layeredTopologicalOrder: MonadOps[(Int, Iterable[A])]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: ((Int, Iterable[A])) ⇒ B): TraversableOnce[B]

    Implicit information
    This member is added by an implicit conversion from LayeredTopologicalOrder[A] to MonadOps[(Int, Iterable[A])] 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:
    (layeredTopologicalOrder: MonadOps[(Int, Iterable[A])]).map(f)
    Definition Classes
    MonadOps
  4. val self: Any

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

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

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

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

    Implicit information
    This member is added by an implicit conversion from LayeredTopologicalOrder[A] to MonadOps[(Int, Iterable[A])] 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:
    (layeredTopologicalOrder: MonadOps[(Int, Iterable[A])]).withFilter(p)
    Definition Classes
    MonadOps

Deprecated Value Members

  1. def /:\[A1 >: (Int, Iterable[A])](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use fold instead

  2. def x: LayeredTopologicalOrder[A]

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

    (Since version 2.10.0) Use leftOfArrow instead

  3. def x: LayeredTopologicalOrder[A]

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

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from AbstractTopologicalOrder[A, (Int, Iterable[A])]

Inherited from AbstractTraversable[(Int, Iterable[A])]

Inherited from Traversable[(Int, Iterable[A])]

Inherited from GenTraversable[(Int, Iterable[A])]

Inherited from TraversableLike[(Int, Iterable[A]), Traversable[(Int, Iterable[A])]]

Inherited from GenTraversableLike[(Int, Iterable[A]), Traversable[(Int, Iterable[A])]]

Inherited from Parallelizable[(Int, Iterable[A]), ParIterable[(Int, Iterable[A])]]

Inherited from TraversableOnce[(Int, Iterable[A])]

Inherited from GenTraversableOnce[(Int, Iterable[A])]

Inherited from FilterMonadic[(Int, Iterable[A]), Traversable[(Int, Iterable[A])]]

Inherited from HasNewBuilder[(Int, Iterable[A]), Traversable[(Int, Iterable[A])]]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion anyToNode from LayeredTopologicalOrder[A] to OuterNode[LayeredTopologicalOrder[A]]

Inherited by implicit conversion traversable2ops from LayeredTopologicalOrder[A] to TraversableOps[(Int, Iterable[A])]

Inherited by implicit conversion MonadOps from LayeredTopologicalOrder[A] to MonadOps[(Int, Iterable[A])]

Inherited by implicit conversion EdgeAssoc from LayeredTopologicalOrder[A] to EdgeAssoc[LayeredTopologicalOrder[A]]

Inherited by implicit conversion any2stringadd from LayeredTopologicalOrder[A] to StringAdd

Inherited by implicit conversion any2stringfmt from LayeredTopologicalOrder[A] to StringFormat

Inherited by implicit conversion any2ArrowAssoc from LayeredTopologicalOrder[A] to ArrowAssoc[LayeredTopologicalOrder[A]]

Inherited by implicit conversion any2Ensuring from LayeredTopologicalOrder[A] to Ensuring[LayeredTopologicalOrder[A]]

Inherited by implicit conversion alternateImplicit from LayeredTopologicalOrder[A] to ForceImplicitAmbiguity

Ungrouped