Fast, minimal, feature-rich, extended formatting syntax for Rust!
Features include:
In your Cargo.toml, add:
text
[dependencies]
fmtools = "0.1"
```rust fn basic_usage() -> String { let name = "World";
fmtools::format!("Hello "{name}"!")
}
asserteq!(basicusage(), "Hello World!"); ```
The value arguments can be arbitrary expressions. They are inlined in the formatting braces and are outside the string literals.
```rust fn formatting_specifiers() -> String { let value = 42;
fmtools::format!("hex("{value}") = "{value:#x})
}
asserteq!(formattingspecifiers(), "hex(42) = 0x2a"); ```
The rules for the specifiers are exactly the same as the standard library of Rust.
```rust fn let_bindings() -> String { let base = 52;
fmtools::format! {
let value = base - 10;
"value = "{value}
}
}
asserteq!(letbindings(), "value = 42"); ```
Introduce new variable bindings to hold onto temporary values used in the formatting.
```rust fn control_flow1() -> String { let power = 0.5;
fmtools::format! {
"At "
if power >= 1.0 { "full" } else { {power * 100.0:.0}"%" }
" power"
}
}
asserteq!(controlflow1(), "At 50% power"); ```
```rust fn control_flow2() -> String { let value = Some(42);
fmtools::format! {
"The answer is "
match value {
Some(answer) => "Some("{answer}")",
None => "None",
}
}
}
asserteq!(controlflow2(), "The answer is Some(42)"); ```
```rust fn control_flow3() -> String { let values = [1, 2, 3, 4, 5];
fmtools::format! {
for &val in &values {
let result = val * 5;
"* "{val}" x 5 = "{result}"\n"
}
}
}
asserteq!(controlflow3(), "\ * 1 x 5 = 5\n\ * 2 x 5 = 10\n\ * 3 x 5 = 15\n\ * 4 x 5 = 20\n\ * 5 x 5 = 25\n"); ```
Control flow really shows the added value of the extended formatting syntax.
```rust fn capturebyvalue() -> String { fn inner() -> impl std::fmt::Display { let a = 42; fmtools::fmt!(move "a = "{a}) } fmtools::format!("{"{inner()}"}") }
asserteq!(captureby_value(), "{a = 42}"); ```
The displayable object can own the captured variables with move
and can be returned from functions.
```rust fn escapehatch() -> String { fmtools::format! { "Now entering [" |f| f.writestr("escape hatch")?; "]" } }
asserteq!(escapehatch(), "Now entering [escape hatch]"); ```
Closure syntax provides an escape hatch to inject code if needed.
The argument's type is &mut Formatter
.
Licensed under MIT License, see license.txt.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, shall be licensed as above, without any additional terms or conditions.