Changeset bfcd3af for doc/proposals
- Timestamp:
- May 24, 2024, 2:46:33 PM (16 months ago)
- Branches:
- master
- Children:
- c819d90
- Parents:
- e6f1a4b (diff), dc74231 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/proposals/autogen.md
re6f1a4b rbfcd3af 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.