Package-level declarations

Functions

Link copied to clipboard
Link copied to clipboard
fun <E> KoneList<E>.allCombinationsWithoutRepetitions(equalityTest: (E, E) -> Boolean = { e1, e2 -> e1 == e2 }): Sequence<KoneList<E>>
Link copied to clipboard
Link copied to clipboard
fun <E> KoneList<E>.allPermutationsWithoutRepetitions(equalityTest: (E, E) -> Boolean = { e1, e2 -> e1 == e2 }): Sequence<KoneList<E>>
Link copied to clipboard
infix fun <E> KoneList<E>.cartesianPower(power: UInt): Sequence<KoneList<E>>
Link copied to clipboard
fun <E> cartesianProduct(vararg collections: KoneList<E>): Sequence<KoneList<E>>
fun <E1, E2> cartesianProduct(collection1: KoneIterable<E1>, collection2: KoneIterable<E2>): Sequence<Pair<E1, E2>>
fun <E1, E2, E3> cartesianProduct(collection1: KoneIterable<E1>, collection2: KoneIterable<E2>, collection3: KoneIterable<E3>): Sequence<Triple<E1, E2, E3>>
Link copied to clipboard
Link copied to clipboard
fun <E> KoneList<E>.combinationsWithoutRepetitions(k: UInt = size, equalityTest: (E, E) -> Boolean = { e1, e2 -> e1 == e2 }): Sequence<KoneList<E>>
Link copied to clipboard
Link copied to clipboard
fun <E> KoneList<E>.permutationsWithoutRepetitions(k: UInt = size, equalityTest: (E, E) -> Boolean = { e1, e2 -> e1 == e2 }): Sequence<KoneList<E>>
Link copied to clipboard
fun <E> KoneList<E>.selectiveCartesianPower(power: UInt, testPrefix: (KoneList<E>) -> Boolean): Sequence<KoneList<E>>