Package-level declarations

Types

Link copied to clipboard
class FieldNumberIterator(reserved: List<Int>)
Link copied to clipboard
class NumberIterator(first: Int, last: Int = Int.MAX_VALUE, reserved: List<IntRange>)

Functions

Link copied to clipboard
inline fun <T : Any> List<*>.castItems(): List<T>
Link copied to clipboard
fun <T> Iterator<T>.nextWhere(predicate: (T) -> Boolean): T
Link copied to clipboard
fun <T, C : Iterable<T>> C.requireNoDuplicates(message: (duplicate: T) -> String): C
Link copied to clipboard
fun <T : Any> reverseTopologicalOrdering(startingNodes: List<T>, targets: (T) -> List<T>): List<T>

Creates a reverse-topologically sorted list of nodes by means of performing a depth-first search in the graph. In case an edge is encountered that creates a cycle in the graph, that edge is ignored.

Link copied to clipboard
fun simpleTypeName(descriptor: SerialDescriptor): String
Link copied to clipboard
inline fun <T> Boolean.then(value: () -> T): T?
Link copied to clipboard
fun <T : Any> topologicalIndex(startingNodes: List<T>, targets: (T) -> List<T>): Map<T, Int>

Creates a topological ordering of nodes by means of performing a depth-first search in the graph. In case an edge is encountered that creates a cycle in the graph, that edge is ignored. The ordering is returned as a map from each node to its index in the ordering.