dyn-fmt
dyn-fmt copied to clipboard
Provides dynamic string format.
Results
2
dyn-fmt issues
Sort by
recently updated
recently updated
newest added
Expected std::fmt compatible crate, but format very trivial use dyn_fmt::AsStrFormatExt; fn main() { assert_eq!("{:04}".format(&[1]), "0001"); }
documentation
Hi! I add some new features to your crate: (positional args, width and precision formatting). And append new tests. But i make some breaking change - replace IntoIterator input to...