mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:58:11 +00:00
AK: Add FlyString::from_deprecated_fly_string()
Let's add FlyString::from_deprecated_fly_string() so we can use it instead of FlyString::from_utf8(). This will make it easier to detect potential unncessary allocations as we transfer to FlyString.
This commit is contained in:
parent
41b8d81d49
commit
e28a6d5da4
2 changed files with 7 additions and 1 deletions
|
@ -168,6 +168,11 @@ DeprecatedFlyString FlyString::to_deprecated_fly_string() const
|
||||||
return DeprecatedFlyString(bytes_as_string_view());
|
return DeprecatedFlyString(bytes_as_string_view());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ErrorOr<FlyString> FlyString::from_deprecated_fly_string(DeprecatedFlyString const& deprecated_fly_string)
|
||||||
|
{
|
||||||
|
return FlyString::from_utf8(deprecated_fly_string.view());
|
||||||
|
}
|
||||||
|
|
||||||
unsigned Traits<FlyString>::hash(FlyString const& fly_string)
|
unsigned Traits<FlyString>::hash(FlyString const& fly_string)
|
||||||
{
|
{
|
||||||
return fly_string.hash();
|
return fly_string.hash();
|
||||||
|
|
|
@ -51,8 +51,9 @@ public:
|
||||||
// This is primarily interesting to unit tests.
|
// This is primarily interesting to unit tests.
|
||||||
[[nodiscard]] static size_t number_of_fly_strings();
|
[[nodiscard]] static size_t number_of_fly_strings();
|
||||||
|
|
||||||
// FIXME: Remove this once all code has been ported to FlyString
|
// FIXME: Remove these once all code has been ported to FlyString
|
||||||
[[nodiscard]] DeprecatedFlyString to_deprecated_fly_string() const;
|
[[nodiscard]] DeprecatedFlyString to_deprecated_fly_string() const;
|
||||||
|
static ErrorOr<FlyString> from_deprecated_fly_string(DeprecatedFlyString const&);
|
||||||
|
|
||||||
// Compare this FlyString against another string with ASCII caseless matching.
|
// Compare this FlyString against another string with ASCII caseless matching.
|
||||||
[[nodiscard]] bool equals_ignoring_ascii_case(FlyString const&) const;
|
[[nodiscard]] bool equals_ignoring_ascii_case(FlyString const&) const;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue