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
Array(Rc<Vec<Val>>),// assume all indices are `Fin`
Tuple(Rc<Vec<Val>>),
This is two layers of indirection rather than one; we should replace it with just Rc<[Val]>. The blocker is that ts-rs doesn't seem to currently support Rc<[T]>.
The text was updated successfully, but these errors were encountered:
Currently the interpreter uses
Rc<Vec<Val>>
to hold arrays and tuples:rose/crates/interp/src/lib.rs
Lines 20 to 21 in 15ac650
This is two layers of indirection rather than one; we should replace it with just
Rc<[Val]>
. The blocker is that ts-rs doesn't seem to currently supportRc<[T]>
.The text was updated successfully, but these errors were encountered: