Unsafe versions of Rust std’s conversion traits
Unsafe versions of standard library From<T> and Into<T>. - prostomarkeloff/unsafe_from... (more…)
Read more »Evaluating code at compile time is a capability that most, if not all, compiled programming languages possess, even if it can’t be directly used by the programmer, but rather applied as an optimization. In this post, we’ll explore a bit how to execute cod… Read more