fmtex

Extra format adaptors

## How to use Add the dependency to your project with: ```sh cargo add fmtex ``` Use library traits to format something: ```rust use fmtex::prelude::*; let s = [1, 2, 3].joined(", ").to_string(); assert_eq!(s, "1, 2, 3"); ```