gnzlbg / bitwise

Portable high-level bitwise manipulation algorithms
https://gnzlbg.github.io/bitwise
MIT License
50 stars 9 forks source link

128 bit integers #22

Open vadixidav opened 6 years ago

vadixidav commented 6 years ago

i128 and u128 should implement Word as well. I need this in an application of morton encoding where I need more than 21 bits of precision on each axis. In the meantime I will use two u64, but it would be nice if we could have support for general bitwise operations on the 128-bit types as well. Is there any interest in this?

gnzlbg commented 6 years ago

Make sense, I wanted to extract the morton index computation into its own library (and get it working using core::arch in stable rust), might get to it this weekend.