core :: Text :: to_bin
self
assert "101101".to_bin == 45
# If `self` contains only '0' et '1', return the corresponding integer. # # ~~~ # assert "101101".to_bin == 45 # ~~~ fun to_bin: Int do return a_to(2)