Takes two arrays (can be of different length) and interleaves them like [a, b, a, b…]
60 61 62
# File 'lib/bblib/core/util/array.rb', line 60 def interleave(ary) BBLib.interleave(self, ary) end