It seems like most of this crate's functions could safely become const fns, and it would be very helpful to be able to do floating-point operations in a const context.
Ah, my mistake - I forgot that you can only do the basic floating point arithmetic in const declarations, not const fns. I understand this isn't really feasible yet.
It seems like most of this crate's functions could safely become
const fn
s, and it would be very helpful to be able to do floating-point operations in a const context.