Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-18 | UTF-8: Add Utf8CodepointIterator::codepoint_length_in_bytes() | Andreas Kling | |
This allows you to retrieve the length (in bytes) of the codepoint the iterator is currently pointing at. | |||
2019-09-05 | Utf8View: Try fixing the travis-ci build | Andreas Kling | |
There's some overload ambiguity when doing Utf8View("literal") | |||
2019-09-05 | AK: Add some more utility methods to Utf8View | Sergey Bugaev | |
2019-08-28 | AK: Add a Utf8View type for iterating over UTF-8 codepoints | Sergey Bugaev | |
Utf8View wraps a StringView and implements begin() and end() that return a Utf8CodepointIterator, which parses UTF-8-encoded Unicode codepoints and returns them as 32-bit integers. This is the first step towards supporting emojis in Serenity ^) https://github.com/SerenityOS/serenity/issues/490 |