]> git.proxmox.com Git - rustc.git/blob - vendor/regex-syntax/src/unicode_tables/perl_space.rs
New upstream version 1.46.0~beta.2+dfsg1
[rustc.git] / vendor / regex-syntax / src / unicode_tables / perl_space.rs
1 // DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
2 //
3 // ucd-generate property-bool ucd-13.0.0 --chars --include whitespace
4 //
5 // Unicode version: 13.0.0.
6 //
7 // ucd-generate 0.2.8 is available on crates.io.
8
9 pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] =
10 &[("White_Space", WHITE_SPACE)];
11
12 pub const WHITE_SPACE: &'static [(char, char)] = &[
13 ('\t', '\r'),
14 (' ', ' '),
15 ('\u{85}', '\u{85}'),
16 ('\u{a0}', '\u{a0}'),
17 ('\u{1680}', '\u{1680}'),
18 ('\u{2000}', '\u{200a}'),
19 ('\u{2028}', '\u{2029}'),
20 ('\u{202f}', '\u{202f}'),
21 ('\u{205f}', '\u{205f}'),
22 ('\u{3000}', '\u{3000}'),
23 ];