Maybe because `get(0)` could return null, and ther...
# strikt
d
Maybe because
get(0)
could return null, and there's no
isNotNull()
to assert and cast that it's not? Looking at the implementation it seems like the possibility for nulls is ignored?
Copy code
operator fun <T : List<E>, E> Builder<T>.get(i: Int): Builder<E> =
  get("element [$i] %s") { this[i] }