mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:27:44 +00:00
AK: Remove now-unused AK::UnicodeUtils methods
This commit is contained in:
parent
d51d5f9591
commit
b87e517deb
2 changed files with 0 additions and 44 deletions
|
@ -10,13 +10,6 @@
|
|||
|
||||
namespace AK::UnicodeUtils {
|
||||
|
||||
constexpr bool is_unicode_control_code_point(u32 code_point)
|
||||
{
|
||||
return code_point < 0x20 || (code_point >= 0x80 && code_point < 0xa0);
|
||||
}
|
||||
|
||||
Optional<StringView> get_unicode_control_code_point_alias(u32);
|
||||
|
||||
template<typename Callback>
|
||||
[[nodiscard]] constexpr int code_point_to_utf8(u32 code_point, Callback callback)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue