We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de984fd commit 049b42aCopy full SHA for 049b42a
src/lib.rs
@@ -95,6 +95,9 @@ macro_rules! tuple_impl {
95
}
96
97
macro_rules! for_each_prefix (
98
+ ($m:ident, [$(($arg:tt),)*]) => {
99
+ for_each_prefix!($m, [], [$(($arg),)*]);
100
+ };
101
($m:ident, [$(($acc:tt),)*], []) => {
102
$m!($($acc,)*);
103
};
@@ -106,7 +109,6 @@ macro_rules! for_each_prefix (
106
109
107
110
for_each_prefix! {
108
111
tuple_impl,
- [],
112
[(T0), (T1), (T2), (T3), (T4), (T5), (T6), (T7), (T8), (T9), (T10), (T11), (T12), (T13), (T14), (T15),]
113
114
@@ -159,7 +161,6 @@ macro_rules! merge_impl2(
159
161
160
162
163
merge_impl2,
164
165
166
@@ -200,7 +201,6 @@ macro_rules! split_impl (
200
201
202
203
split_impl,
204
[((T0, T1)), ((T2, T3)), ((T4, T5)), ((T6, T7)), ((T8, T9)), ((T10, T11)), ((T12, T13)), ((T14, T15)),]
205
206
0 commit comments