We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56c7fec commit dcde115Copy full SHA for dcde115
src/sizes.rs
@@ -829,6 +829,12 @@ mod extra_sizes {
829
pub type U1530 = uint!(0 1 0 1 1 1 1 1 1 0 1);
830
pub type U1658 = uint!(0 1 0 1 1 1 1 0 0 1 1);
831
832
+ // LMS sizes
833
+ pub type U2047 = uint!(1 1 1 1 1 1 1 1 1 1 1);
834
+ pub type U2180 = uint!(0 0 1 0 0 0 0 1 0 0 0 1);
835
+ pub type U4292 = uint!(0 0 1 0 0 0 1 1 0 0 0 0 1);
836
+ pub type U8516 = uint!(0 0 1 0 0 0 1 0 1 0 0 0 0 1);
837
+
838
impl_array_sizes! {
839
1040 => U1040,
840
1056 => U1056,
@@ -1051,4 +1057,12 @@ mod extra_sizes {
1051
1057
1530 => U1530,
1052
1058
1658 => U1658,
1053
1059
}
1060
1061
1062
+ impl_array_sizes! {
1063
+ 2047 => U2047,
1064
+ 2180 => U2180,
1065
+ 4292 => U4292,
1066
+ 8516 => U8516,
1067
+ }
1054
1068
0 commit comments