Skip to content

Commit bef9925

Browse files
author
bors-servo
authored
Auto merge of #163 - mcronce:master, r=emilio
lib.rs: + 96-item inline support Added support for `[_; 96]` arrays I'm not sure how desirable this is to the broader user base, but I had a need for precisely this size for storing hex-encoded SHA384 hashes <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/rust-smallvec/163) <!-- Reviewable:end -->
2 parents 924683a + 0f197c5 commit bef9925

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1579,9 +1579,9 @@ macro_rules! impl_array(
15791579
);
15801580

15811581
impl_array!(
1582-
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20, 24, 32, 36, 0x40, 0x80, 0x100,
1583-
0x200, 0x400, 0x800, 0x1000, 0x2000, 0x4000, 0x8000, 0x10000, 0x20000, 0x40000, 0x80000,
1584-
0x100000
1582+
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20, 24, 32, 36, 0x40, 0x60, 0x80,
1583+
0x100, 0x200, 0x400, 0x600, 0x800, 0x1000, 0x2000, 0x4000, 0x6000, 0x8000, 0x10000, 0x20000,
1584+
0x40000, 0x60000, 0x80000, 0x100000
15851585
);
15861586

15871587
#[cfg(test)]

0 commit comments

Comments
 (0)