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

com.grab.grazel.util.Iterable.kt Maven / Gradle / Ivy

The newest version!
package com.grab.grazel.util

fun > Iterable.addTo(
    destination: C,
): C {
    for (item in this) destination.add(item)
    return destination
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy