ifNotEmpty

@JvmName(name = "ifNotEmptyCollection")
inline suspend fun <R, C : Collection<*>> ifNotEmpty(collection: C, crossinline action: suspend C.() -> R): Option<R>
@JvmName(name = "ifNotEmptyArray")
inline suspend fun <R, T> ifNotEmpty(array: Array<T>, crossinline action: suspend Array<T>.() -> R): Option<R>