#token #scope #macro #information #erase #no-alloc

macro no-std respan

Macros to erase scope information from tokens

6 releases

0.1.5 Jul 15, 2023
0.1.4 Jul 3, 2023
0.1.3 Mar 5, 2023
0.1.2 Dec 17, 2022
0.1.0 Nov 30, 2022

#2205 in Rust patterns

MIT/Apache

7KB

Respan

github crates.io docs.rs build status

Macros to erase scope information from tokens.

Example

#![forbid(unsafe_code)]

fn main() {
    let ptr = 1337 as *const i32;
    let value = respan::call_site! {
        unsafe { *ptr }
    };
    println!("{}", value);
}

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps