summaryrefslogtreecommitdiffstats
path: root/vendor/regex-syntax/src/unicode_tables/perl_space.rs
blob: bb69ce1ba860f94470863df128fafa17a633dd1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
//
//   ucd-generate property-bool /tmp/ucd --chars --include whitespace
//
// Unicode version: 14.0.0.
//
// ucd-generate 0.2.11 is available on crates.io.

pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] =
    &[("White_Space", WHITE_SPACE)];

pub const WHITE_SPACE: &'static [(char, char)] = &[
    ('\t', '\r'),
    (' ', ' '),
    ('\u{85}', '\u{85}'),
    ('\u{a0}', '\u{a0}'),
    ('\u{1680}', '\u{1680}'),
    ('\u{2000}', '\u{200a}'),
    ('\u{2028}', '\u{2029}'),
    ('\u{202f}', '\u{202f}'),
    ('\u{205f}', '\u{205f}'),
    ('\u{3000}', '\u{3000}'),
];