simple sub-string extraction
| 462 | |
| 463 | // simple sub-string extraction |
| 464 | TStringT Mid(int nFirst) const |
| 465 | { |
| 466 | return Mid(nFirst, GetData()->nDataLength - nFirst); |
| 467 | } |
| 468 | TStringT Mid(int nFirst, int nCount) const |
| 469 | { |
| 470 | // out-of-bounds requests return sensible things |
no test coverage detected