You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm building a new format, and I'd like tuples to be (a, b, c) and arrays [a, b, c]. Now, it is very confusing that serializing &[i32] gives me [1, 2, 3], but &[i32; 3] gives me (1, 2, 3).