Is there anything that might allow me to take a Li...
# arrow
j
Is there anything that might allow me to take a List<String> and convert it to a List<Tuple2<String, String>> where it pairs elements and if odd <String, Null> ?
s
j
Thanks 👍
Just found this listOf(strs).zipWithNext()
💯 2