9012 shaares
209 private links
209 private links
A list of useful crate for testing, particularly :
debug_assert()
is run only in debug mode and removed in production builds.
The crate static_assertions
with the macro const_assert!
test const functions-and data during compilation.
(shared by Riduidel)