Macro _eco_format
macro_rules! _eco_format {
    ($($tts:tt)*) => { ... };
}Expand description
Formats a string.
Create a new EcoString from a format string.
assert_eq!(eco_format!("Hello, {}!", 123), "Hello, 123!");macro_rules! _eco_format {
    ($($tts:tt)*) => { ... };
}Formats a string.
Create a new EcoString from a format string.
assert_eq!(eco_format!("Hello, {}!", 123), "Hello, 123!");