regex_syntax/unicode_tables/
perl_space.rs

1// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
2//
3//   ucd-generate property-bool ucd-16.0.0 --chars --include whitespace
4//
5// Unicode version: 16.0.0.
6//
7// ucd-generate 0.3.1 is available on crates.io.
8
9pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] =
10    &[("White_Space", WHITE_SPACE)];
11
12pub 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];