2 releases
0.1.1 | Sep 20, 2024 |
---|---|
0.1.0 | Aug 7, 2024 |
#6 in #adaptor
178 downloads per month
10KB
212 lines
How to use
Add the dependency to your project with:
cargo add fmtex
Use library traits to format something:
use fmtex::prelude::*;
let s = [1, 2, 3].joined(", ").to_string();
assert_eq!(s, "1, 2, 3");