Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 706 Bytes

Missing.md

File metadata and controls

13 lines (9 loc) · 706 Bytes

Missing APIs from the types we cover (APIs have been added after this formalization was done)

Cell

  • Structural conversion for slices. The matching operations in our model would be &mut Cell<(A, B)> -> &mut (Cell<A>, Cell<B>) and &Cell<(A, B)> -> &(Cell<A>, Cell<B>) (both being NOPs).
    • Turns out to be very hard! The way we currently associate NA-masks with locations is in conflict with this. The invariant for the entire cell gets allocated "on" the first location of the cell, so when we do splitting the 2nd projection has no way to access it...

ZST