!*********************************************************************** @Function substr @Input _Off Start of the substring @Input _Count Length of the substring @Returns A substring of the string @Description Returns the size of the string *************************************************************************/
| 1565 | @Description Returns the size of the string |
| 1566 | *************************************************************************/ |
| 1567 | CPVRTString CPVRTString::substr(size_t _Off, size_t _Count) const |
| 1568 | { |
| 1569 | return CPVRTString(*this, _Off, _Count); |
| 1570 | } |
| 1571 | |
| 1572 | /*!*********************************************************************** |
| 1573 | @Function swap |