-
-
Notifications
You must be signed in to change notification settings - Fork 883
Closed
Description
Currently the data model uses different types for tuples like (A, B, C) and seq_fixed_size like [u64; 3]. I don't think there are any formats that treat these differently. The defining characteristic in both cases is they are heterogeneous sequences in which the length is known during deserialization without looking at the serialized data.
Let's remove seq_fixed_size and serialize fixed size arrays as tuples instead.