summaryrefslogtreecommitdiffstats
path: root/vendor/regex-syntax/src/unicode_tables/perl_space.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/regex-syntax/src/unicode_tables/perl_space.rs')
-rw-r--r--vendor/regex-syntax/src/unicode_tables/perl_space.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/regex-syntax/src/unicode_tables/perl_space.rs b/vendor/regex-syntax/src/unicode_tables/perl_space.rs
new file mode 100644
index 000000000..c112dd126
--- /dev/null
+++ b/vendor/regex-syntax/src/unicode_tables/perl_space.rs
@@ -0,0 +1,23 @@
+// DO NOT EDIT THIS FILE. IT WAS AUTOMATICALLY GENERATED BY:
+//
+// ucd-generate property-bool ucd-13.0.0 --chars --include whitespace
+//
+// Unicode version: 13.0.0.
+//
+// ucd-generate 0.2.8 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}'),
+];