| 18 | } |
| 19 | |
| 20 | int main(int, char**) |
| 21 | { |
| 22 | Matrix<int,1,6> v; v << 1,2,3,4,5,6; |
| 23 | cout << segmentFromRange(2*v, 2, 4) << endl; // calls the const version |
| 24 | segmentFromRange(v, 1, 3) *= 5; // calls the non-const version |
| 25 | cout << "Now the vector v is:" << endl << v << endl; |
| 26 | return 0; |
| 27 | } |
nothing calls this directly
no test coverage detected