thats the normal single assert: ``` fun <T : Co...
# strikt
c
thats the normal single assert:
Copy code
fun <T : Collection<E>, E> Builder<T>.single(): Builder<E> {
  assertThat("has only one element") { it.size == 1 }
  return get("single element %s") { single() }
}