bit_array_to_list(b)
Return a list of integers corresponding to the bits in the bit array b.
b
let b = #b[0, 1, 1, 0, 1] bit_array_to_list(b) // [0, 1, 1, 0, 1]
Core Module Index | Contents