summaryrefslogtreecommitdiff
path: root/AK/String.h
AgeCommit message (Expand)Author
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
2022-02-23AK: Add optional format string parameter to String{,Builder}::join()Linus Groh
2022-02-19AK: Add fast path in String::trim() and String::trim_whitespace()Andreas Kling
2022-02-19AK: Make CaseInsensitiveStringTraits allocation-freeAndreas Kling
2022-01-23AK: Avoid impl initialization before assignment in `String`constructorMichel Hermier
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-11-10AK+Everywhere: Stop including Vector.h from StringView.hAndreas Kling
2021-09-11AK: Replace the mutable String::replace API with an immutable versionIdan Horowitz
2021-09-11AK: Make String::count not use strstr and take a StringViewIdan Horowitz
2021-09-01AK: Pass AK::Format TypeErasedFormatParams by reference in AK::StringBrian Gianforcaro
2021-08-26AK: Implement method to convert a String/StringView to title caseTimothy Flynn
2021-08-13AK: Annotate String.count as [[nodiscard]]Brian Gianforcaro
2021-08-12AK: Add contains(char) method to StringJean-Baptiste Boric
2021-08-02AK: Fix declaration of {String,StringView}::is_one_ofTimothy Flynn
2021-07-04AK: Add generation of roman numerals to AK::StringTobias Christiansen
2021-07-02AK: Implement String::find_any_of() and StringView::find_any_of()Max Wipfli
2021-07-02AK: Add input bounds checking to String::substring()Max Wipfli
2021-07-02AK: Add String::find_last() and inline String::find() methodsMax Wipfli
2021-07-02AK: Implement StringView::find_all()Max Wipfli
2021-06-18AK: Add a way to disable the trimming of whitespace in to_*intsin-ack
2021-06-04AK: Inline *String::is_one_of<Ts...>()Ali Mohammad Pur
2021-06-03AK: Allow inlining more string functionsGunnar Beutner
2021-06-01AK: Add trim() method to String, StringView and StringUtilsMax Wipfli
2021-05-30AK: Verify that m_impl is non-null in String::operator[]Max Wipfli
2021-05-25AK: Add String::repeated(StringView, size_t count)Matthew Olsson
2021-05-24AK+Everywhere: Consolidate String::index_of() and String::find()Andreas Kling
2021-05-19AK: Add String::find_all() and String::count()Maciej Zygmanowski
2021-05-16AK+Userland: Remove nullability feature for the ByteBuffer typeGunnar Beutner
2021-05-01AK: Move bijective-base-conversion into AK/StringTobias Christiansen
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-21AK: Remove String::format()Andreas Kling
2021-04-21AK: Decorate most of String's API's with [[nodiscard]]Andreas Kling
2021-04-10AK+Everywhere: Make StdLibExtras templates less wrapper-yAnotherTest
2021-02-26Everywhere: Remove a bunch of redundant 'AK::' namespace prefixesLinus Groh
2021-02-23AK+Kernel+Userland: Enable some more compiletime format string checksAnotherTest
2021-02-21AK: Add String{,Utils}::to_snakecase()Linus Groh
2021-02-08AK: Add dbgln() format checkingAnotherTest
2021-01-15AK: Add String::join() helper functionLinus Groh
2021-01-12AK: Add String{View,}::find(StringView)AnotherTest
2021-01-12AK: Simplify constructors and conversions from nullptr_tLenny Maiorani
2021-01-11AK: Enable format string warnings for AK printf wrappersSahan Fernando
2021-01-03AK: Add String{,View}::is_whitespace()AnotherTest
2020-12-30AK: Replace some SFINAE with requires clauses, clean up existing onesAndrew Kaster
2020-12-30AK: Move String::number entirely to header fileAndrew Kaster
2020-12-27LibJS: Implement (mostly) spec compliant version of Number.toString()Stephan Unverwerth
2020-12-21AK: Generalize AK::String::to_int() for more typesSahan Fernando
2020-12-10AK: Add String::substring(start)Andreas Kling