Evaluate Z-order indexing for types, iterators, and tuples of BitCollections.
See also morton_encoding
.
Here's a basic example using the built-in FromU8
BitCollection - see more
examples in the docs.
use zdex::*;
fn main() -> Result<(), std::io::Error> {
let v1: FromU8 = 0b0011.into();
let v2: FromU8 = 0b1111.into();
// Prints "Vob[01011111]".
println!("{:?}", (v1, v2).z_index()?);
Ok(())
}