|
|
fun <T> NonEmptyList<T>.forAll(fn: (T) -> Unit): Unit |
|
|
fun <T> NonEmptyList<T>.forAny(f: (T) -> Unit): Unit |
|
|
fun <T> NonEmptyList<T>.forAtLeast(k: Int, fn: (T) -> Unit): Unit |
|
|
fun <T> NonEmptyList<T>.forAtLeastOne(f: (T) -> Unit): Unit |
|
|
fun <T> NonEmptyList<T>.forAtMost(k: Int, fn: (T) -> Unit): Unit |
|
|
fun <T> NonEmptyList<T>.forAtMostOne(f: (T) -> Unit): Unit |
|
|
fun <T> NonEmptyList<T>.forExactly(k: Int, fn: (T) -> Unit): Unit |
|
|
fun <T> NonEmptyList<T>.forNone(f: (T) -> Unit): Unit |
|
|
fun <T> NonEmptyList<T>.forOne(fn: (T) -> Unit): Unit |
|
|
fun <T> NonEmptyList<T>.forSome(fn: (T) -> Unit): Unit |
|
|
infix fun <T> NonEmptyList<T>.shouldBeSingleElement(t: T): Unit |
|
|
fun <T : Comparable<T>> NonEmptyList<T>.shouldBeSorted(): Unit |
|
|
fun NonEmptyList<Any>.shouldBeUnique(): Unit |
|
|
infix fun <T> NonEmptyList<T>.shouldContain(t: T): Unit |
|
|
fun <T> NonEmptyList<T>.shouldContainAll(vararg ts: T): Unit
infix fun <T> NonEmptyList<T>.shouldContainAll(ts: List<T>): Unit |
|
|
fun <T> NonEmptyList<T>.shouldContainElementAt(index: Int, element: T): Unit |
|
|
fun <T> NonEmptyList<T>.shouldContainNoNulls(): Unit |
|
|
fun <T> NonEmptyList<T>.shouldContainNull(): Unit |
|
|
fun <T> NonEmptyList<T>.shouldContainOnlyNulls(): Unit |
|
|
fun NonEmptyList<Any>.shouldHaveDuplicates(): Unit |
|
|
infix fun NonEmptyList<Any>.shouldHaveSize(size: Int): Unit |
|
|
infix fun <T> NonEmptyList<T>.shouldNotBeSingleElement(t: T): Unit |
|
|
fun <T : Comparable<T>> NonEmptyList<T>.shouldNotBeSorted(): Unit |
|
|
fun NonEmptyList<Any>.shouldNotBeUnique(): Unit |
|
|
infix fun <T> NonEmptyList<T>.shouldNotContain(t: T): Unit |
|
|
fun <T> NonEmptyList<T>.shouldNotContainAll(vararg ts: T): Unit
infix fun <T> NonEmptyList<T>.shouldNotContainAll(ts: List<T>): Unit |
|
|
fun <T> NonEmptyList<T>.shouldNotContainElementAt(index: Int, element: T): Unit |
|
|
fun <T> NonEmptyList<T>.shouldNotContainNoNulls(): Unit |
|
|
fun <T> NonEmptyList<T>.shouldNotContainNull(): Unit |
|
|
fun <T> NonEmptyList<T>.shouldNotContainOnlyNulls(): Unit |
|
|
fun NonEmptyList<Any>.shouldNotHaveDuplicates(): Unit |
|
|
infix fun NonEmptyList<Any>.shouldNotHaveSize(size: Int): Unit |