You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, this crate supports u8, u16, u32, u64, and u128.
However, I would like to support variable bit lengths in the future.
First, I am considering supporting the bool type, which is 1 bit.
After that, I am considering supporting compound types.
In this way, 2 bits can be supported by using two bool types of 1 bit each.
The text was updated successfully, but these errors were encountered:
Currently, this crate supports u8, u16, u32, u64, and u128.
However, I would like to support variable bit lengths in the future.
First, I am considering supporting the bool type, which is 1 bit.
After that, I am considering supporting compound types.
In this way, 2 bits can be supported by using two bool types of 1 bit each.
The text was updated successfully, but these errors were encountered: