| 276 | int length() const { return strlen(str); } |
| 277 | int glyphs() { return utf8_strlen(str); } |
| 278 | bool empty() { return !str[0]; } |
| 279 | |
| 280 | // Quick hash to detect change (e.g., to avoid expensive drawing) |
| 281 | typedef IF<ENABLED(DJB2_HASH), uint32_t, uint16_t>::type hash_t; |
no outgoing calls
no test coverage detected