combinationsWithoutRepetitions

fun <E> KoneList<E>.combinationsWithoutRepetitions(k: UInt = size, equalityTest: (E, E) -> Boolean = { e1, e2 -> e1 == e2 }): Sequence<KoneList<E>>(source)