| 536 | } |
| 537 | |
| 538 | MutableStringView String::prefix(const std::size_t count) { |
| 539 | return MutableStringView{*this}.prefix(count); |
| 540 | } |
| 541 | |
| 542 | StringView String::prefix(const std::size_t count) const { |
| 543 | return StringView{*this}.prefix(count); |
no outgoing calls
no test coverage detected