serebit
fun <E> Iterable<E?>.noNullsOrEmpty(): List<E> = if (null in this) emptyList() else requireNoNulls()