#string-literal #literals #pattern #macro #proc-macro #pattern-matching

macro no-std expand

Macro to expand byte string and string literals

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

Download history 114/week @ 2024-03-13 84/week @ 2024-03-20 79/week @ 2024-03-27 106/week @ 2024-04-03 74/week @ 2024-04-10 101/week @ 2024-04-17 113/week @ 2024-04-24 119/week @ 2024-05-01 87/week @ 2024-05-08 114/week @ 2024-05-15 99/week @ 2024-05-22 84/week @ 2024-05-29 94/week @ 2024-06-05 102/week @ 2024-06-12 111/week @ 2024-06-19 109/week @ 2024-06-26

434 downloads per month
Used in 2 crates

MPL-2.0 license

9KB
74 lines

expand

version deps license ci

Macro to expand byte string and string literals

Documentation

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