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