| 385 | } |
| 386 | |
| 387 | u64 text::index_of(const text_view& pattern, const u64 from, const u64 size) const noexcept |
| 388 | { |
| 389 | return this->view().index_of(pattern, from, size); |
| 390 | } |
| 391 | |
| 392 | u64 text::last_index_of(const text_view& pattern, const u64 from, const u64 size) const noexcept |
| 393 | { |
no test coverage detected