summaryrefslogtreecommitdiff
path: root/AK/String.h
AgeCommit message (Expand)Author
2023-03-09AK: Make FlyString::hash() use the cached hash in StringData if possibleAndreas Kling
2023-03-08AK+LibUnicode: Implement String::equals_ignoring_case without allocatingTimothy Flynn
2023-03-08AK: Make String::contains(code_point) handle non-ASCIITimothy Flynn
2023-03-08AK: Make String::{starts,ends}_with(code_point) handle non-ASCIITimothy Flynn
2023-03-03AK: Ensure short String instances are valid UTF-8Timothy Flynn
2023-03-03AK: Add String::ends_with{,_bytes}()Linus Groh
2023-02-28AK: Add two starts_with{bytes,}() APIs to StringAli Mohammad Pur
2023-02-25AK: Use the same consteval condition on _short_string as its factoryTimothy Flynn
2023-02-25AK: Add operator""_{short_,}string to create a String from a literalLinus Groh
2023-02-21AK: Add String::from_stream methodAndrew Kaster
2023-02-21AK: Make String const-correct internallyAndreas Kling
2023-02-04AK: Use constexpr instead of consteval on OpenBSDnipos
2023-01-28AK: Add String::trimTimothy Flynn
2023-01-28AK: Add String::joinTimothy Flynn
2023-01-27AK: Add an overload of String::find_byte_offset for StringViewTimothy Flynn
2023-01-24AK: Add convenience substring wrappers to String to exclude a lengthTimothy Flynn
2023-01-24AK: Add a method to create a String with a repeated code pointTimothy Flynn
2023-01-24AK: Add a method to find the byte offset of a code pointTimothy Flynn
2023-01-24AK: Remove [[nodiscard]] attribute from String methods returning ErrorOrTimothy Flynn
2023-01-22AK: Add a String factory to create a string from a single code pointTimothy Flynn
2023-01-22AK: Change String's default constructor to be constantTimothy Flynn
2023-01-21AK: Add `split()` for `String`martinfalisse
2023-01-20AK: Disable use of consteval in String::from_utf8_short_string for AppleTimothy Flynn
2023-01-20AK: Support creating known short string literals at compile timeTimothy Flynn
2023-01-18AK+LibUnicode: Provide Unicode-aware caseless String matchingTimothy Flynn
2023-01-16AK+LibUnicode: Provide Unicode-aware String titlecase transformationTimothy Flynn
2023-01-15AK: Add String::to_numberTimothy Flynn
2023-01-15AK: Add String::containsTimothy Flynn
2023-01-15AK: Add String::is_one_of for variadic string comparisonTimothy Flynn
2023-01-15AK: Add a somewhat naive implementation of String::reverseTimothy Flynn
2023-01-13AK: Add support for "debug only" formattersMacDue
2023-01-12AK: Implement FlyString for the new String classTimothy Flynn
2023-01-09AK+LibUnicode: Provide Unicode-aware String case transformationsTimothy Flynn
2022-12-11AK: Add comparison operatorkleines Filmröllchen
2022-12-09Everywhere: Use C++ concepts instead of requires clausesMoustafa Raafat
2022-12-06AK: Introduce the new String, replacement for DeprecatedStringAndreas Kling
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-12-03Everywhere: Run clang-formatLinus Groh
2022-11-26AK: Make it possible to not `using` AK classes into the global namespaceAndreas Kling
2022-11-06Everywhere: Remove redundant inequality comparison operatorsDaniel Bertalan
2022-10-24AK+Everywhere: Turn bool keep_empty to an enum in split* functionsdemostanis
2022-10-23AK: Add to_{double, float} convenience functions to all string typesdavidot
2022-07-15AK: Add a helper to get the last split-groupHendiadyoin1
2022-07-12AK: Remove String <-> char const* comparison operatorssin-ack
2022-07-06AK: Use an enum instead of a bool for String::replace(all_occurences)DexesTTP
2022-05-26AK: Add invert_case() and invert_case(StringView)huttongrabiel
2022-04-10AK: Remove `KERNEL` check from `String`Jelle Raaijmakers
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-21AK: Add a case insensitive of is_one_of to String[View]Hendiadyoin1
2022-02-25AK: Add String::split_view(Function<bool(char)>)Andreas Kling