- Timestamp:
- May 23, 2024, 5:18:27 PM (6 months ago)
- Branches:
- master
- Children:
- dc74231
- Parents:
- fbc84ca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/proposals/autogen.md
rfbc84ca r2c8946b 46 46 47 47 Results in the following autogenerated expands to: 48 48 forall(T* | { T ?=?(T&, T); void ?{}(T&); void ?{}(T&, T); void ^?{}(T&); }) 49 49 void ?{}(Cell(T)&); 50 50 forall(T* | { T ?=?(T&, T); void ?{}(T&); void ?{}(T&, T); void ^?{}(T&); }) 51 51 void ?{}(Cell(T)&, Cell(T)); 52 52 forall(T* | { T ?=?(T&, T); void ?{}(T&); void ?{}(T&, T); void ^?{}(T&); }) 53 53 void ^?{}(Cell(T)&); 54 54 forall(T* | { T ?=?(T&, T); void ?{}(T&); void ?{}(T&, T); void ^?{}(T&); }) 55 55 void ?=?(Cell(T)&, Cell(T)); 56 56 forall(T* | { T ?=?(T&, T); void ?{}(T&); void ?{}(T&, T); void ^?{}(T&); }) 57 57 void ?{}(Cell(T)&, T); 58 58 59 59 If these assertions were reduced to the minimial required assertions the result would instead look something like the: 60 60 forall(T* | { void ?{}(T&); }) 61 61 void ?{}(Cell(T)&); 62 62 forall(T* | { void ?{}(T&, T); }) 63 63 void ?{}(Cell(T)&, Cell(T)); 64 64 forall(T* | { void ^?{}(T&); }) 65 65 void ^?{}(Cell(T)&); 66 66 forall(T* | { T ?=?(T&, T); }) 67 67 void ?=?(Cell(T)&, Cell(T)); 68 68 forall(T* | { void ?{}(T&, T); }) 69 69 void ?{}(Cell(T)&, T); 70 70
Note: See TracChangeset
for help on using the changeset viewer.