| 512 | } |
| 513 | |
| 514 | MutableStringView String::sliceSize(const std::size_t begin, const std::size_t size) { |
| 515 | return MutableStringView{*this}.sliceSize(begin, size); |
| 516 | } |
| 517 | |
| 518 | StringView String::sliceSize(const std::size_t begin, const std::size_t size) const { |
| 519 | return StringView{*this}.sliceSize(begin, size); |
no outgoing calls
no test coverage detected