Conversation

Would be nice to see more exploration of the design space for crates that provide ranged integer types to eliminate bounds checks in Rust. I wouldn't be surprised if you can encode something like Wuffs in Rust's type system.
6
46
Replying to and
Another limitation might be with monomorphisation. For some use cases you might want to erase the type level ranges at runtime, but rust would instantiate a new impl for each concrete range. Might also make handling dynamically known ranges difficult?
1
1