aformat!() { /* proc-macro */ }
Expand description
A no-alloc version of format!
, producing an ArrayString
.
ยงUsage
Usage is similar to format!
, although there are multiple limitations:
- No support for formatting flags, as we are not reinventing all of
format!
. - No support for
format!("{name}", name=username)
syntax, may be lifted in future.