bit_arrays_concat


bit_arrays_concat(bs)
      

Return a new bit array which is the concatenation of the bit arrays in the list bs.

Examples:


bit_arrays_concat([#b[1, 0, 1], #b[0, 1, 0], #b[1, 1, 1]])
// #b[1, 0, 1, 0, 1, 0, 1, 1, 1]
      

Also see:

subbitarray


Core Module Index | Contents