#string #utf-16 #wide #compile-time #proc-macro

wchar

Procedural macros for compile time UTF-16 and UTF-32 wide strings

11 releases (7 breaking)

0.11.0 Aug 9, 2021
0.10.1 May 14, 2021
0.9.0 May 12, 2021
0.6.1 Aug 27, 2020
0.2.0 Jun 25, 2018

#374 in Text processing

Download history 2994/week @ 2024-01-03 3223/week @ 2024-01-10 3554/week @ 2024-01-17 3591/week @ 2024-01-24 2479/week @ 2024-01-31 2476/week @ 2024-02-07 3506/week @ 2024-02-14 3148/week @ 2024-02-21 3717/week @ 2024-02-28 3617/week @ 2024-03-06 3830/week @ 2024-03-13 3112/week @ 2024-03-20 2239/week @ 2024-03-27 3988/week @ 2024-04-03 2475/week @ 2024-04-10 2463/week @ 2024-04-17

11,718 downloads per month
Used in 7 crates

MIT/Apache

19KB
342 lines

wchar

build status crates.io docs.rs

This library introduces two macros to create UTF-16 and UTF-32 wide strings at compiler time, like L string literals in C.

[dependencies]
wchar = "0.10"

Compiler support: requires rustc 1.53+

Example

use wchar::{wch, wchz, wchar_t};

// Equivalent to `#define RUST L"Rust"` in C.
const RUST: &[wchar_t] = wch!("Rust\0"); // C strings are nul-terminated.
// Equivalent to `#define ALSO_RUST L"Rust"` in C.
const ALSO_RUST: &[wchar_t] = wchz!("Rust");

assert_eq!(RUST, &['R' as wchar_t, 'u' as wchar_t, 's' as wchar_t, 't' as wchar_t, 0x0000]);
assert_eq!(RUST, ALSO_RUST);

License

This project is licensed under either of Apache License, Version 2.0 or MIT License at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1.5MB
~34K SLoC