Reads a binary number from string
the number in a uinteger
Exception in case string is not a binary number, or too big to store in uinteger, or empty string
assert("01010101".readBinary == 0B01010101);
See Implementation
Reads a binary number from string