string_to_bit_array


string_to_bit_array(s)
      

Return a bit array initialized from the string s.

The string s should contain only the characters \1 and \0.

Examples:


string_to_bit_array("1011")
// #b[1, 0, 1, 1]
      

Also see:

string_to_list


Core Module Index | Contents