Interleaves two string lists by alternating elements.
Example:
// a = ["1","3"], b = ["2","4"]
var result = Lists.interleaveString (a, b);
// ["1","2","3","4"]
| a |
the first list. |
| b |
the second list. |
|
a new interleaved list. |