#string #sugar #macro #easy #proc-macro

s-macro

一个基本的Rust库,方便创建String。

1个不稳定版本

0.1.0 2023年1月29日

#1986过程宏

Download history 12/week @ 2024-04-03

1,254 每月下载

通用许可证

3KB

s-macro

一个基本的Rust库,方便创建String。例如

use s_macro::s;

assert!(s!()                   == String::new());
assert!(s!("hello, world")     == String::from("hello, world"));
assert!(s!(123 + 321)          == format!("{}", 123 + 321));

let world = "world";
assert!(s!("hello, {}", world) == format!("hello, {}", world));
assert!(s!("hello, {world}")   == format!("hello, {world}"));

依赖项

~1.5MB
~35K SLoC