Skip to content

Commit ef9a22a

Browse files
committed
Run rustfmt
1 parent 4d1697a commit ef9a22a

File tree

1 file changed

+8
-16
lines changed

1 file changed

+8
-16
lines changed

src/tables.rs

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,9 @@ pub mod general_category {
6060
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6161
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6262
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
63-
0, 0, 0, 0, 0, 0
64-
],
65-
r3: &[
66-
0x0000000000000000, 0x1000ff00ff00ff00, 0x1000000000001000
63+
0, 0, 0, 0, 0, 0,
6764
],
65+
r3: &[0x0000000000000000, 0x1000ff00ff00ff00, 0x1000000000001000],
6866
r4: [
6967
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7068
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
@@ -74,32 +72,28 @@ pub mod general_category {
7472
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7573
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7674
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
77-
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
75+
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7876
],
7977
r5: &[
8078
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8179
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
82-
0, 0, 0, 0, 0, 0
83-
],
84-
r6: &[
85-
0x0000000000000000
80+
0, 0, 0, 0, 0, 0,
8681
],
82+
r6: &[0x0000000000000000],
8783
};
8884

8985
pub fn Lt(c: char) -> bool {
9086
Lt_table.lookup(c)
9187
}
92-
9388
}
9489

95-
pub mod derived_property {
96-
}
90+
pub mod derived_property {}
9791

9892
pub mod conversions {
9993
pub fn to_title(c: char) -> [char; 3] {
10094
match bsearch_case_table(c, to_titlecase_table) {
101-
None => [c, '\0', '\0'],
102-
Some(index) => to_titlecase_table[index].1
95+
None => [c, '\0', '\0'],
96+
Some(index) => to_titlecase_table[index].1,
10397
}
10498
}
10599

@@ -764,6 +758,4 @@ pub mod conversions {
764758
('\u{1e941}', ['\u{1e91f}', '\0', '\0']), ('\u{1e942}', ['\u{1e920}', '\0', '\0']),
765759
('\u{1e943}', ['\u{1e921}', '\0', '\0'])
766760
];
767-
768761
}
769-

0 commit comments

Comments
 (0)