1个不稳定版本
0.1.0 | 2023年1月29日 |
---|
#1986 在 过程宏 中
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