7 releases
0.3.0 | Mar 18, 2023 |
---|---|
0.2.1 | Oct 21, 2022 |
0.2.0 | Nov 6, 2020 |
0.1.3 | Nov 3, 2020 |
0.1.2 | Oct 25, 2020 |
#14 in #literal
434 downloads per month
Used in 2 crates
9KB
74 lines
expand
Macro to expand byte string and string literals
Usage
use expand::expand;
// expanding a byte string
assert_eq!(
&expand!([@b"Hello,", b' ', @b"world", b'!']),
b"Hello, world!"
);
// expanding a string
assert_eq!(
expand!(vec![@"Hello,", ' ', @"world", '!']),
"Hello, world!".chars().collect::<Vec<char>>(),
);
// pattern matching
if let expand!([@b"patt", x, y, b'n', ..]) = b"pattern matching" {
assert_eq!(x, &b'e');
assert_eq!(y, &b'r');
} else {
panic!("pattern matching failed");
}
// more pattern matching
if let expand!([@b"msg = \"", xs @ .., b'"']) = br#"msg = "Hello, world!""# {
assert_eq!(xs, b"Hello, world!");
} else {
panic!("pattern matching failed");
}
Changelog
See CHANGELOG.md
Dependencies
~310–770KB
~18K SLoC