| 379 | }; |
| 380 | |
| 381 | raw_vector<T> getvector(int iStart, int iEnd) |
| 382 | { |
| 383 | if( iStart>iEnd || wrongIdx(iStart) || wrongIdx(iEnd) ) |
| 384 | return raw_vector<T>(0, 0, 1); |
| 385 | else |
| 386 | return raw_vector<T>(m_Vec+iStart-m_iLow, iEnd-iStart+1, 1); |
| 387 | }; |
| 388 | |
| 389 | |
| 390 | const_raw_vector<T> getvector(int iStart, int iEnd) const |
nothing calls this directly
no outgoing calls
no test coverage detected