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

no-std fmtex

Extra format adaptors

2 releases

0.1.1 Sep 20, 2024
0.1.0 Aug 7, 2024

#6 in #adaptor

Download history 101/week @ 2024-08-02 16/week @ 2024-08-09 12/week @ 2024-09-13 148/week @ 2024-09-20 14/week @ 2024-09-27 4/week @ 2024-10-04

178 downloads per month

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