| 564 | }; |
| 565 | |
| 566 | raw_vector<T> getrow(int iRow, int iColumnStart, int iColumnEnd) |
| 567 | { |
| 568 | if( (iColumnStart>iColumnEnd) || wrongRow(iRow) || wrongColumn(iColumnStart) || wrongColumn(iColumnEnd)) |
| 569 | return raw_vector<T>(0, 0, 1); |
| 570 | else |
| 571 | return raw_vector<T>(&((*this)(iRow, iColumnStart)), iColumnEnd-iColumnStart+1, 1); |
| 572 | }; |
| 573 | |
| 574 | const_raw_vector<T> getcolumn(int iColumn, int iRowStart, int iRowEnd) const |
| 575 | { |
nothing calls this directly
no outgoing calls
no test coverage detected