| 18 | typedef char value_type; |
| 19 | char *begin() const { return start; } |
| 20 | char *end() const { return start + length; } |
| 21 | size_t size() const { return length; } |
| 22 | private: |
| 23 | char *start; |
nothing calls this directly
no outgoing calls
no test coverage detected