| 359 | } |
| 360 | |
| 361 | [[nodiscard]] constexpr text_view trim(const text_view& text_set = text_view(u8" \t")) const noexcept |
| 362 | { |
| 363 | return this->trim_start(text_set).trim_end(text_set); |
| 364 | } |
| 365 | |
| 366 | [[nodiscard]] constexpr u64 get_codepoint_index(const u64 codeunit_index) const noexcept |
| 367 | { |
nothing calls this directly
no test coverage detected