Hello, For input, you have 0b101010101010 and 0xa6e etc etc..
You have the ability to do const b36 = BitSet('10101010110101010101010101010').toString(36)
But not sure how to get it back in const bs = BitSet(b36)
I am sure you are gonna say it's not possible.. but I just wanted to confirm that something like BitSet(b36, 36) didn't exist?
Hello, For input, you have
0b101010101010and0xa6eetc etc..You have the ability to do
const b36 = BitSet('10101010110101010101010101010').toString(36)But not sure how to get it back in
const bs = BitSet(b36)I am sure you are gonna say it's not possible.. but I just wanted to confirm that something like
BitSet(b36, 36)didn't exist?