| 700 | |
| 701 | |
| 702 | inline bool pure_slice::hasSuffix(pure_slice s) const noexcept { |
| 703 | return s.size > 0 && size >= s.size |
| 704 | && ::memcmp(offsetby(buf, size - s.size), s.buf, s.size) == 0; |
| 705 | } |
| 706 | |
| 707 | |
| 708 | #pragma mark MEMORY ALLOCATION |
nothing calls this directly
no test coverage detected