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

ru.hnau.jutils.producer.extensions.int.producerExtensionsIntArray.kt Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package ru.hnau.jutils.producer.extensions.int

import ru.hnau.jutils.producer.Producer
import ru.hnau.jutils.producer.extensions.filter


fun Producer.callIfEmpty() = callIf { it.isEmpty() }
fun Producer.callIfNullOrEmpty() = callIf { it?.isEmpty() != false }
fun Producer.filterNotEmpty() = filter { it.isNotEmpty() }
fun Producer.mapIsEmpty() = map { it.isEmpty() }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy