| 508 | } |
| 509 | |
| 510 | inline size_t strcpy(TCharType* pc, size_t n) const noexcept { |
| 511 | if (n) { |
| 512 | n = copy(pc, n - 1); |
| 513 | pc[n] = 0; |
| 514 | } |
| 515 | |
| 516 | return n; |
| 517 | } |
| 518 | |
| 519 | inline TDerived copy() const Y_WARN_UNUSED_RESULT { |
| 520 | return TDerived(Ptr(), Len()); |