@note end position does not include suffix length
| 71 | |
| 72 | //! @note end position does not include suffix length |
| 73 | inline size_t EndPos() const { |
| 74 | return Pos + Len; |
| 75 | } |
| 76 | |
| 77 | bool operator==(const TCharSpan& span) const { |
| 78 | return ((span.Pos == Pos) && (span.Len == Len) && |
no outgoing calls
no test coverage detected