class TSort[T] extends AnyRef
Topological sorting result of hopefully graphs (preferably DAG's but report cycles)
- Source
- tsort.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TSort
- AnyRef
- Any
Implicitly
- by richDrxAny
- by DrxBoundOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new TSort(sorted: Iterable[T], cyclic: Iterable[(T, T)])
Value Members
- def applyIf(t: Boolean, f: (TSort[T]) => TSort[T]): TSort[T]
- Implicit
- This member is added by an implicit conversion from TSort[T] toDrxAny[TSort[T]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def applyIf(t: (TSort[T]) => Boolean)(f: (TSort[T]) => TSort[T]): TSort[T]
better chaining for types
better chaining for types
- Implicit
- This member is added by an implicit conversion from TSort[T] toDrxAny[TSort[T]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- val cyclic: Iterable[(T, T)]
- def elementOf(xs: Set[TSort[T]]): Boolean
- Implicit
- This member is added by an implicit conversion from TSort[T] toDrxAny[TSort[T]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def isDAG: Boolean
- def noneIf(f: (TSort[T]) => Boolean): Option[TSort[T]]
- Implicit
- This member is added by an implicit conversion from TSort[T] toDrxAny[TSort[T]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def optionIf(f: (TSort[T]) => Boolean): Option[TSort[T]]
optionally wrap an object
optionally wrap an object
- Implicit
- This member is added by an implicit conversion from TSort[T] toDrxAny[TSort[T]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def preApply[B](f: (TSort[T]) => B): B
a preApply f => f(a)
a preApply f => f(a)
- Implicit
- This member is added by an implicit conversion from TSort[T] toDrxAny[TSort[T]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def sideEffect(f: (TSort[T]) => Unit): TSort[T]
side effect filter
side effect filter
- Implicit
- This member is added by an implicit conversion from TSort[T] toDrxAny[TSort[T]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def someIf(f: (TSort[T]) => Boolean): Option[TSort[T]]
- Implicit
- This member is added by an implicit conversion from TSort[T] toDrxAny[TSort[T]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- val sorted: Iterable[T]
- val thisAny: TSort[T]
- Implicit
- This member is added by an implicit conversion from TSort[T] toDrxAny[TSort[T]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def till(maxArg: TSort[T]): Bound[TSort[T]]
Bound construction since the Range constructor is deprecated
Bound construction since the Range constructor is deprecated
- def toString(): String
- Definition Classes
- TSort → AnyRef → Any
Deprecated Value Members
- def ?>(f: (TSort[T]) => Boolean): Option[TSort[T]]
alias for option if
alias for option if
- Implicit
- This member is added by an implicit conversion from TSort[T] toDrxAny[TSort[T]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- Annotations
- @deprecated
- Deprecated
(Since version v0.2.15) to many symbols are hard to undertand
- def |>[B](f: (TSort[T]) => B): B
- Implicit
- This member is added by an implicit conversion from TSort[T] toDrxAny[TSort[T]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- Annotations
- @deprecated
- Deprecated
(Since version v0.2.15) use
preApply
if you must (symbols are concise without concision)