in reply to split every other value
A zip function takes two lists as its input, and interleaves them, so given the lists:
andqw(ant bat camel)
it would spit out a listqw(aardvark bird cow)
.qw(ant aardvark bat bird camel cow)
and unzip() does the exact opposite. Language::Functional is a very useful module indeed, despite the very low version number.
|
|---|