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?
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.
i128
andu128
should implementWord
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?