| 75 | LengthType ByteLength() const { return byteLength; } |
| 76 | |
| 77 | UTF8StringSliceBase Left(const LengthType numberOfCharacters) const { |
| 78 | if (numberOfCharacters == UTF8Length()) { |
| 79 | return *this; |
| 80 | } else { |
| 81 | return UTF8StringSliceBase(str, numberOfCharacters); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | UTF8StringSliceBase Right(const LengthType numberOfCharacters) const { |
| 86 | if (numberOfCharacters == UTF8Length()) { |