How can I convert a list with 4 elements: `mutable...
# getting-started
a
How can I convert a list with 4 elements:
mutableListOf(a, b, c, d)
to a map when
{a=b, c=d}
?
zipWithNext().toMap()
gives
{a=b, b=c, c=d}