| 18 | typedef double* iterator ; |
| 19 | |
| 20 | Cache( iterator data_) : data(data_){} |
| 21 | |
| 22 | inline proxy ref(int i){ return data[i] ; } |
| 23 | inline proxy ref(int i) const { return data[i] ; } |
nothing calls this directly
no outgoing calls
no test coverage detected