3 个不稳定版本
0.1.1 | 2021年5月8日 |
---|---|
0.1.0 | 2021年4月8日 |
0.0.0 | 2021年4月8日 |
#2067 在 Rust 模式
4,137 每月下载量
在 10 个 包中(4 个直接)使用
4KB
文本块宏
创建多行字符串字面量。
使用示例
创建没有最终换行符的文本块
use text_block_macros::text_block;
let text = text_block! {
"abc"
"def"
"ghi"
};
assert_eq!(text, "abc\ndef\nghi");
创建以换行符结尾的文本块
use text_block_macros::text_block_fnl;
let text = text_block_fnl! {
"abc"
"def"
"ghi"
};
assert_eq!(text, "abc\ndef\nghi\n");