You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
match c.unwrap_or('\x00'){// None can be null for now... it's not whitespace
1601
-
' ' | '\n' | '\t' | '\r' => true,
1602
-
_ => false,
1603
-
}
1600
+
// This tests the character for the unicode property 'PATTERN_WHITE_SPACE' which
1601
+
// is guaranteed to be forward compatible. http://unicode.org/reports/tr31/#R3
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+
// option. This file may not be copied, modified, or distributed
9
+
// except according to those terms.
10
+
11
+
12
+
// Beware editing: it has numerous whitespace characters which are important.
13
+
// It contains one ranges from the 'PATTERN_WHITE_SPACE' property outlined in
0 commit comments