zipLaw

inline fun <T, R> Collection<T>.zipLaw(other: Collection<R>): List<Pair<T, R>>
inline fun <T, R, V> Collection<T>.zipLaw(other: Collection<R>, transform: (T, R) -> V): List<V>