Tuple_pool.SlotsSlots has types t1, ..., t12 of arities 1 to 12 that are isomorphic to tuple types of the corresponding arities. Type ('a0, ..., 'a<N-1>) t<N> corresponds to 'a0 * ... * 'a<N-1>.
Each type ti is an instance of type ('tuple, 'variant) t, in which 'tuple is the tuple type 'a0 * ... * 'a<N-1> and 'variant is an encoding of the tuple type in the form: [ `S0 of `a0 | `S1 of `a1 | ... | `S<N-1> of `a<N-1> ].
The encoding of the slots using a polymorphic variant allows one to write functions that are polymorphic in the tuple type, and require that a tuple have a certain slot, but allow more slots.
We make t itself a polymorphic variant type so that one can easily encode cyclic types, e.g. lists, like:
type 'a slots = ('a, 'a slots Pointer.t) Slots.t2Observe that slots in the above is cyclic, but that OCaml allows it because the definition expands to:
type 'a slots =
[ `Slots of
('a * 'a slots Pointer.t, [ `S0 of 'a | `S1 of 'a slots Pointer.t ]) u
]Ultimately, a Slots.t is used as a phantom type that ensures consistent usage of the tuples in the data structure containing them.
type ('tuple, 'variant) t =
[ `Slots of ('tuple, 'variant) u ] Core.Modes.Immutable_data.tval sexp_of_t :
('tuple -> Sexplib0.Sexp.t) ->
('variant -> Sexplib0.Sexp.t) ->
('tuple, 'variant) t ->
Sexplib0.Sexp.tval slots_per_tuple : (_, _) t -> inttype 'a0 t1 = ('a0, [ `S0 of 'a0 ]) tval sexp_of_t1 : ('a0 -> Sexplib0.Sexp.t) -> 'a0 t1 -> Sexplib0.Sexp.ttype ('a0, 'a1) t2 = ('a0 * 'a1, [ `S0 of 'a0 | `S1 of 'a1 ]) tval sexp_of_t2 :
('a0 -> Sexplib0.Sexp.t) ->
('a1 -> Sexplib0.Sexp.t) ->
('a0, 'a1) t2 ->
Sexplib0.Sexp.ttype ('a0, 'a1, 'a2) t3 =
('a0 * 'a1 * 'a2, [ `S0 of 'a0 | `S1 of 'a1 | `S2 of 'a2 ]) tval sexp_of_t3 :
('a0 -> Sexplib0.Sexp.t) ->
('a1 -> Sexplib0.Sexp.t) ->
('a2 -> Sexplib0.Sexp.t) ->
('a0, 'a1, 'a2) t3 ->
Sexplib0.Sexp.ttype ('a0, 'a1, 'a2, 'a3) t4 =
('a0 * 'a1 * 'a2 * 'a3,
[ `S0 of 'a0 | `S1 of 'a1 | `S2 of 'a2 | `S3 of 'a3 ])
tval sexp_of_t4 :
('a0 -> Sexplib0.Sexp.t) ->
('a1 -> Sexplib0.Sexp.t) ->
('a2 -> Sexplib0.Sexp.t) ->
('a3 -> Sexplib0.Sexp.t) ->
('a0, 'a1, 'a2, 'a3) t4 ->
Sexplib0.Sexp.ttype ('a0, 'a1, 'a2, 'a3, 'a4) t5 =
('a0 * 'a1 * 'a2 * 'a3 * 'a4,
[ `S0 of 'a0 | `S1 of 'a1 | `S2 of 'a2 | `S3 of 'a3 | `S4 of 'a4 ])
tval sexp_of_t5 :
('a0 -> Sexplib0.Sexp.t) ->
('a1 -> Sexplib0.Sexp.t) ->
('a2 -> Sexplib0.Sexp.t) ->
('a3 -> Sexplib0.Sexp.t) ->
('a4 -> Sexplib0.Sexp.t) ->
('a0, 'a1, 'a2, 'a3, 'a4) t5 ->
Sexplib0.Sexp.ttype ('a0, 'a1, 'a2, 'a3, 'a4, 'a5) t6 =
('a0 * 'a1 * 'a2 * 'a3 * 'a4 * 'a5,
[ `S0 of 'a0
| `S1 of 'a1
| `S2 of 'a2
| `S3 of 'a3
| `S4 of 'a4
| `S5 of 'a5 ])
tval sexp_of_t6 :
('a0 -> Sexplib0.Sexp.t) ->
('a1 -> Sexplib0.Sexp.t) ->
('a2 -> Sexplib0.Sexp.t) ->
('a3 -> Sexplib0.Sexp.t) ->
('a4 -> Sexplib0.Sexp.t) ->
('a5 -> Sexplib0.Sexp.t) ->
('a0, 'a1, 'a2, 'a3, 'a4, 'a5) t6 ->
Sexplib0.Sexp.ttype ('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6) t7 =
('a0 * 'a1 * 'a2 * 'a3 * 'a4 * 'a5 * 'a6,
[ `S0 of 'a0
| `S1 of 'a1
| `S2 of 'a2
| `S3 of 'a3
| `S4 of 'a4
| `S5 of 'a5
| `S6 of 'a6 ])
tval sexp_of_t7 :
('a0 -> Sexplib0.Sexp.t) ->
('a1 -> Sexplib0.Sexp.t) ->
('a2 -> Sexplib0.Sexp.t) ->
('a3 -> Sexplib0.Sexp.t) ->
('a4 -> Sexplib0.Sexp.t) ->
('a5 -> Sexplib0.Sexp.t) ->
('a6 -> Sexplib0.Sexp.t) ->
('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6) t7 ->
Sexplib0.Sexp.ttype ('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6, 'a7) t8 =
('a0 * 'a1 * 'a2 * 'a3 * 'a4 * 'a5 * 'a6 * 'a7,
[ `S0 of 'a0
| `S1 of 'a1
| `S2 of 'a2
| `S3 of 'a3
| `S4 of 'a4
| `S5 of 'a5
| `S6 of 'a6
| `S7 of 'a7 ])
tval sexp_of_t8 :
('a0 -> Sexplib0.Sexp.t) ->
('a1 -> Sexplib0.Sexp.t) ->
('a2 -> Sexplib0.Sexp.t) ->
('a3 -> Sexplib0.Sexp.t) ->
('a4 -> Sexplib0.Sexp.t) ->
('a5 -> Sexplib0.Sexp.t) ->
('a6 -> Sexplib0.Sexp.t) ->
('a7 -> Sexplib0.Sexp.t) ->
('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6, 'a7) t8 ->
Sexplib0.Sexp.ttype ('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6, 'a7, 'a8) t9 =
('a0 * 'a1 * 'a2 * 'a3 * 'a4 * 'a5 * 'a6 * 'a7 * 'a8,
[ `S0 of 'a0
| `S1 of 'a1
| `S2 of 'a2
| `S3 of 'a3
| `S4 of 'a4
| `S5 of 'a5
| `S6 of 'a6
| `S7 of 'a7
| `S8 of 'a8 ])
tval sexp_of_t9 :
('a0 -> Sexplib0.Sexp.t) ->
('a1 -> Sexplib0.Sexp.t) ->
('a2 -> Sexplib0.Sexp.t) ->
('a3 -> Sexplib0.Sexp.t) ->
('a4 -> Sexplib0.Sexp.t) ->
('a5 -> Sexplib0.Sexp.t) ->
('a6 -> Sexplib0.Sexp.t) ->
('a7 -> Sexplib0.Sexp.t) ->
('a8 -> Sexplib0.Sexp.t) ->
('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6, 'a7, 'a8) t9 ->
Sexplib0.Sexp.ttype ('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6, 'a7, 'a8, 'a9) t10 =
('a0 * 'a1 * 'a2 * 'a3 * 'a4 * 'a5 * 'a6 * 'a7 * 'a8 * 'a9,
[ `S0 of 'a0
| `S1 of 'a1
| `S2 of 'a2
| `S3 of 'a3
| `S4 of 'a4
| `S5 of 'a5
| `S6 of 'a6
| `S7 of 'a7
| `S8 of 'a8
| `S9 of 'a9 ])
tval sexp_of_t10 :
('a0 -> Sexplib0.Sexp.t) ->
('a1 -> Sexplib0.Sexp.t) ->
('a2 -> Sexplib0.Sexp.t) ->
('a3 -> Sexplib0.Sexp.t) ->
('a4 -> Sexplib0.Sexp.t) ->
('a5 -> Sexplib0.Sexp.t) ->
('a6 -> Sexplib0.Sexp.t) ->
('a7 -> Sexplib0.Sexp.t) ->
('a8 -> Sexplib0.Sexp.t) ->
('a9 -> Sexplib0.Sexp.t) ->
('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6, 'a7, 'a8, 'a9) t10 ->
Sexplib0.Sexp.ttype ('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6, 'a7, 'a8, 'a9, 'a10) t11 =
('a0 * 'a1 * 'a2 * 'a3 * 'a4 * 'a5 * 'a6 * 'a7 * 'a8 * 'a9 * 'a10,
[ `S0 of 'a0
| `S1 of 'a1
| `S2 of 'a2
| `S3 of 'a3
| `S4 of 'a4
| `S5 of 'a5
| `S6 of 'a6
| `S7 of 'a7
| `S8 of 'a8
| `S9 of 'a9
| `S10 of 'a10 ])
tval sexp_of_t11 :
('a0 -> Sexplib0.Sexp.t) ->
('a1 -> Sexplib0.Sexp.t) ->
('a2 -> Sexplib0.Sexp.t) ->
('a3 -> Sexplib0.Sexp.t) ->
('a4 -> Sexplib0.Sexp.t) ->
('a5 -> Sexplib0.Sexp.t) ->
('a6 -> Sexplib0.Sexp.t) ->
('a7 -> Sexplib0.Sexp.t) ->
('a8 -> Sexplib0.Sexp.t) ->
('a9 -> Sexplib0.Sexp.t) ->
('a10 -> Sexplib0.Sexp.t) ->
('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6, 'a7, 'a8, 'a9, 'a10) t11 ->
Sexplib0.Sexp.ttype ('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6, 'a7, 'a8, 'a9, 'a10, 'a11) t12 =
('a0 * 'a1 * 'a2 * 'a3 * 'a4 * 'a5 * 'a6 * 'a7 * 'a8 * 'a9 * 'a10 * 'a11,
[ `S0 of 'a0
| `S1 of 'a1
| `S2 of 'a2
| `S3 of 'a3
| `S4 of 'a4
| `S5 of 'a5
| `S6 of 'a6
| `S7 of 'a7
| `S8 of 'a8
| `S9 of 'a9
| `S10 of 'a10
| `S11 of 'a11 ])
tval sexp_of_t12 :
('a0 -> Sexplib0.Sexp.t) ->
('a1 -> Sexplib0.Sexp.t) ->
('a2 -> Sexplib0.Sexp.t) ->
('a3 -> Sexplib0.Sexp.t) ->
('a4 -> Sexplib0.Sexp.t) ->
('a5 -> Sexplib0.Sexp.t) ->
('a6 -> Sexplib0.Sexp.t) ->
('a7 -> Sexplib0.Sexp.t) ->
('a8 -> Sexplib0.Sexp.t) ->
('a9 -> Sexplib0.Sexp.t) ->
('a10 -> Sexplib0.Sexp.t) ->
('a11 -> Sexplib0.Sexp.t) ->
('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6, 'a7, 'a8, 'a9, 'a10, 'a11) t12 ->
Sexplib0.Sexp.ttype ('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6, 'a7, 'a8, 'a9, 'a10, 'a11, 'a12) t13 =
('a0
* 'a1
* 'a2
* 'a3
* 'a4
* 'a5
* 'a6
* 'a7
* 'a8
* 'a9
* 'a10
* 'a11
* 'a12,
[ `S0 of 'a0
| `S1 of 'a1
| `S2 of 'a2
| `S3 of 'a3
| `S4 of 'a4
| `S5 of 'a5
| `S6 of 'a6
| `S7 of 'a7
| `S8 of 'a8
| `S9 of 'a9
| `S10 of 'a10
| `S11 of 'a11
| `S12 of 'a12 ])
tval sexp_of_t13 :
('a0 -> Sexplib0.Sexp.t) ->
('a1 -> Sexplib0.Sexp.t) ->
('a2 -> Sexplib0.Sexp.t) ->
('a3 -> Sexplib0.Sexp.t) ->
('a4 -> Sexplib0.Sexp.t) ->
('a5 -> Sexplib0.Sexp.t) ->
('a6 -> Sexplib0.Sexp.t) ->
('a7 -> Sexplib0.Sexp.t) ->
('a8 -> Sexplib0.Sexp.t) ->
('a9 -> Sexplib0.Sexp.t) ->
('a10 -> Sexplib0.Sexp.t) ->
('a11 -> Sexplib0.Sexp.t) ->
('a12 -> Sexplib0.Sexp.t) ->
('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6, 'a7, 'a8, 'a9, 'a10, 'a11, 'a12) t13 ->
Sexplib0.Sexp.ttype ('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6, 'a7, 'a8, 'a9, 'a10, 'a11, 'a12, 'a13)
t14 =
('a0
* 'a1
* 'a2
* 'a3
* 'a4
* 'a5
* 'a6
* 'a7
* 'a8
* 'a9
* 'a10
* 'a11
* 'a12
* 'a13,
[ `S0 of 'a0
| `S1 of 'a1
| `S2 of 'a2
| `S3 of 'a3
| `S4 of 'a4
| `S5 of 'a5
| `S6 of 'a6
| `S7 of 'a7
| `S8 of 'a8
| `S9 of 'a9
| `S10 of 'a10
| `S11 of 'a11
| `S12 of 'a12
| `S13 of 'a13 ])
tval sexp_of_t14 :
('a0 -> Sexplib0.Sexp.t) ->
('a1 -> Sexplib0.Sexp.t) ->
('a2 -> Sexplib0.Sexp.t) ->
('a3 -> Sexplib0.Sexp.t) ->
('a4 -> Sexplib0.Sexp.t) ->
('a5 -> Sexplib0.Sexp.t) ->
('a6 -> Sexplib0.Sexp.t) ->
('a7 -> Sexplib0.Sexp.t) ->
('a8 -> Sexplib0.Sexp.t) ->
('a9 -> Sexplib0.Sexp.t) ->
('a10 -> Sexplib0.Sexp.t) ->
('a11 -> Sexplib0.Sexp.t) ->
('a12 -> Sexplib0.Sexp.t) ->
('a13 -> Sexplib0.Sexp.t) ->
('a0, 'a1, 'a2, 'a3, 'a4, 'a5, 'a6, 'a7, 'a8, 'a9, 'a10, 'a11, 'a12, 'a13)
t14 ->
Sexplib0.Sexp.tval t1 : _ t1val t2 : (_, _) t2val t3 : (_, _, _) t3val t4 : (_, _, _, _) t4val t5 : (_, _, _, _, _) t5val t6 : (_, _, _, _, _, _) t6val t7 : (_, _, _, _, _, _, _) t7val t8 : (_, _, _, _, _, _, _, _) t8val t9 : (_, _, _, _, _, _, _, _, _) t9val t10 : (_, _, _, _, _, _, _, _, _, _) t10val t11 : (_, _, _, _, _, _, _, _, _, _, _) t11val t12 : (_, _, _, _, _, _, _, _, _, _, _, _) t12val t13 : (_, _, _, _, _, _, _, _, _, _, _, _, _) t13val t14 : (_, _, _, _, _, _, _, _, _, _, _, _, _, _) t14