#display #format #fmt #adaptor #no-std

no-std fmtex

Extra format adaptors

2 releases

0.1.1 Sep 20, 2024
0.1.0 Aug 7, 2024

#8 in #adaptor

MIT license

10KB
212 lines

fmtex

Extra format adaptors

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");

No runtime deps