Files
ladybird/Libraries/LibC
Andreas Kling 4f72f6b886 AK: Add FlyString, a simple flyweight string class
FlyString is a flyweight string class that wraps a RefPtr<StringImpl>
known to be unique among the set of FlyStrings. The class is very
unoptimized at the moment.

When to use FlyString:

- When you want O(1) string comparison
- When you want to deduplicate a lot of identical strings

When not to use FlyString:

- For strings that don't need either of the above features
- For strings that are likely to be unique
2020-03-22 13:03:43 +01:00
..
2020-02-20 06:57:47 +01:00
2020-02-16 10:47:54 +01:00
2020-02-16 10:47:54 +01:00
2020-02-16 21:58:17 +01:00
2020-02-19 16:08:28 +01:00
2020-01-18 09:45:54 +01:00
2020-02-02 10:58:45 +01:00
2020-02-22 21:36:54 +01:00
2020-02-22 21:36:54 +01:00