| 118 | auto operator[] (int i) const { return list[i]; } |
| 119 | |
| 120 | void SetFESpace (shared_ptr<FESpace> fespace) |
| 121 | { |
| 122 | if (*this) |
| 123 | shared_ptr<ProxyFunction> (*this) -> SetFESpace(fespace); |
| 124 | else |
| 125 | for (auto node : list) |
| 126 | node.SetFESpace(fespace); |
| 127 | } |
| 128 | }; |
| 129 | |
| 130 |
no outgoing calls
no test coverage detected