@@ -61,8 +61,8 @@ external apply7 : ('a0 -> 'a1 -> 'a2 -> 'a3 -> 'a4 -> 'a5 -> 'a6 -> 'a7) -> 'a0
61
61
(* Internal use *)
62
62
external apply8 : ('a0 -> 'a1 -> 'a2 -> 'a3 -> 'a4 -> 'a5 -> 'a6 -> 'a7 -> 'a8 ) -> 'a0 -> 'a1 -> 'a2 -> 'a3 -> 'a4 -> 'a5 -> 'a6 -> 'a7 -> 'a8 = " #apply8"
63
63
64
- (* Intenral use *)
65
- let curry_1 o a0 arity =
64
+
65
+ let % private curry_1 o a0 arity =
66
66
match arity with
67
67
| 1 -> apply1 (Obj. magic o) a0
68
68
| 2 -> apply2 (Obj. magic o) a0
@@ -86,8 +86,8 @@ let __1 o =
86
86
else fun a0 -> _1 o a0
87
87
88
88
89
- (* Intenral use *)
90
- let curry_2 o a0 a1 arity =
89
+
90
+ let % private curry_2 o a0 a1 arity =
91
91
match arity with
92
92
| 1 -> app (apply1 (Obj. magic o) a0) [|a1|]
93
93
| 2 -> apply2 (Obj. magic o) a0 a1
@@ -111,8 +111,8 @@ let __2 o =
111
111
else fun a0 a1 -> _2 o a0 a1
112
112
113
113
114
- (* Intenral use *)
115
- let curry_3 o a0 a1 a2 arity =
114
+
115
+ let % private curry_3 o a0 a1 a2 arity =
116
116
match arity with
117
117
| 1 -> app (apply1 (Obj. magic o) a0) [|a1;a2|]
118
118
| 2 -> app (apply2 (Obj. magic o) a0 a1) [|a2|]
@@ -136,8 +136,8 @@ let __3 o =
136
136
else fun a0 a1 a2 -> _3 o a0 a1 a2
137
137
138
138
139
- (* Intenral use *)
140
- let curry_4 o a0 a1 a2 a3 arity =
139
+
140
+ let % private curry_4 o a0 a1 a2 a3 arity =
141
141
match arity with
142
142
| 1 -> app (apply1 (Obj. magic o) a0) [|a1;a2;a3|]
143
143
| 2 -> app (apply2 (Obj. magic o) a0 a1) [|a2;a3|]
@@ -161,8 +161,8 @@ let __4 o =
161
161
else fun a0 a1 a2 a3 -> _4 o a0 a1 a2 a3
162
162
163
163
164
- (* Intenral use *)
165
- let curry_5 o a0 a1 a2 a3 a4 arity =
164
+
165
+ let % private curry_5 o a0 a1 a2 a3 a4 arity =
166
166
match arity with
167
167
| 1 -> app (apply1 (Obj. magic o) a0) [|a1;a2;a3;a4|]
168
168
| 2 -> app (apply2 (Obj. magic o) a0 a1) [|a2;a3;a4|]
@@ -186,8 +186,8 @@ let __5 o =
186
186
else fun a0 a1 a2 a3 a4 -> _5 o a0 a1 a2 a3 a4
187
187
188
188
189
- (* Intenral use *)
190
- let curry_6 o a0 a1 a2 a3 a4 a5 arity =
189
+
190
+ let % private curry_6 o a0 a1 a2 a3 a4 a5 arity =
191
191
match arity with
192
192
| 1 -> app (apply1 (Obj. magic o) a0) [|a1;a2;a3;a4;a5|]
193
193
| 2 -> app (apply2 (Obj. magic o) a0 a1) [|a2;a3;a4;a5|]
@@ -211,8 +211,8 @@ let __6 o =
211
211
else fun a0 a1 a2 a3 a4 a5 -> _6 o a0 a1 a2 a3 a4 a5
212
212
213
213
214
- (* Intenral use *)
215
- let curry_7 o a0 a1 a2 a3 a4 a5 a6 arity =
214
+
215
+ let % private curry_7 o a0 a1 a2 a3 a4 a5 a6 arity =
216
216
match arity with
217
217
| 1 -> app (apply1 (Obj. magic o) a0) [|a1;a2;a3;a4;a5;a6|]
218
218
| 2 -> app (apply2 (Obj. magic o) a0 a1) [|a2;a3;a4;a5;a6|]
@@ -236,8 +236,8 @@ let __7 o =
236
236
else fun a0 a1 a2 a3 a4 a5 a6 -> _7 o a0 a1 a2 a3 a4 a5 a6
237
237
238
238
239
- (* Intenral use *)
240
- let curry_8 o a0 a1 a2 a3 a4 a5 a6 a7 arity =
239
+
240
+ let % private curry_8 o a0 a1 a2 a3 a4 a5 a6 a7 arity =
241
241
match arity with
242
242
| 1 -> app (apply1 (Obj. magic o) a0) [|a1;a2;a3;a4;a5;a6;a7|]
243
243
| 2 -> app (apply2 (Obj. magic o) a0 a1) [|a2;a3;a4;a5;a6;a7|]
0 commit comments