com.grab.grazel.util.Iterable.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grazel-gradle-plugin Show documentation
Show all versions of grazel-gradle-plugin Show documentation
A Gradle plugin to automate Bazel migration for Android projects
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