| 504 | } |
| 505 | |
| 506 | MutableStringView String::sliceSizePointerInternal(char* const begin, const std::size_t size) { |
| 507 | return MutableStringView{*this}.sliceSize(begin, size); |
| 508 | } |
| 509 | |
| 510 | StringView String::sliceSizePointerInternal(const char* const begin, const std::size_t size) const { |
| 511 | return StringView{*this}.sliceSize(begin, size); |