| 105 | |
| 106 | |
| 107 | void |
| 108 | assign(Home home, const SetVarArgs& x, |
| 109 | SetVarBranch vars, SetAssign vals, |
| 110 | SetBranchFilter bf, |
| 111 | SetVarValPrint vvp) { |
| 112 | using namespace Set; |
| 113 | if (home.failed()) return; |
| 114 | ViewArray<SetView> xv(home,x); |
| 115 | ViewSel<SetView>* vs[1] = { |
| 116 | new (home) ViewSelNone<SetView>(home,vars) |
| 117 | }; |
| 118 | postviewvalbrancher<SetView,1,int,1> |
| 119 | (home,xv,vs,Branch::valselcommit(home,vals),bf,vvp); |
| 120 | } |
| 121 | |
| 122 | void |
| 123 | assign(Home home, const SetVarArgs& x, |
no test coverage detected