All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cash.grammar.utils.collections.kt Maven / Gradle / Ivy

There is a newer version: 0.5
Show newest version
package cash.grammar.utils

public inline fun  C.ifNotEmpty(block: (C) -> Unit) where C : Collection<*> {
  if (isNotEmpty()) {
    block(this)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy