mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
AK: Add StringBuilder::to_fly_string()
This commit is contained in:
@@ -15,6 +15,7 @@
|
||||
|
||||
#ifndef KERNEL
|
||||
# include <AK/DeprecatedString.h>
|
||||
# include <AK/FlyString.h>
|
||||
# include <AK/Utf16View.h>
|
||||
#endif
|
||||
|
||||
@@ -122,6 +123,11 @@ ErrorOr<String> StringBuilder::to_string() const
|
||||
{
|
||||
return String::from_utf8(string_view());
|
||||
}
|
||||
|
||||
ErrorOr<FlyString> StringBuilder::to_fly_string() const
|
||||
{
|
||||
return FlyString::from_utf8(string_view());
|
||||
}
|
||||
#endif
|
||||
|
||||
StringView StringBuilder::string_view() const
|
||||
|
||||
Reference in New Issue
Block a user