tschuchort
09/08/2018, 12:26 PMinternal fun <T,S,R> List<T>.zipWith(other: List<S>, zipper: (T,S) -> R): List<R>
= zip(other).map { (fst, snd) -> zipper(fst, snd) }
inlining this function (as I had previously done) leads to a different exception that it can not be inlined