string_to_bit_array(s)
Return a bit array initialized from the string s.
s
The string s should contain only the characters \1 and \0.
string_to_bit_array("1011") // #b[1, 0, 1, 1]
Core Module Index | Contents