summaryrefslogtreecommitdiff
path: root/AK/StringView.h
AgeCommit message (Expand)Author
2022-04-03AK: Add `StringView::copy_characters_to_buffer()`Tim Schumacher
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-21AK: Add a case insensitive of is_one_of to String[View]Hendiadyoin1
2022-03-18AK: Mark the StringView user-defined literal as constevalTimothy Flynn
2022-02-16AK: Exclude StringView String APIs from the KernelIdan Horowitz
2022-01-30AK+Tests: Make null strings compare less than non-null stringsDaniel Bertalan
2022-01-29AK: Implement all comparison operators for StringViewDaniel Bertalan
2022-01-12AK: Implement StringView::for_each_split_viewBrian Gianforcaro
2022-01-11AK: Define a traits helper for case-insensitive StringView hashingTimothy Flynn
2021-11-16AK: Verify that we are not overreaching in StringView's substring_view()Hendiadyoin1
2021-11-14AK: Mark StringView::find_any_of() as constAndrew Kaster
2021-11-14AK: Resolve clang-tidy readability-bool-conversion warningsAndrew Kaster
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-11AK: Forbid creating StringView from temporary FlyStringBen Wiederhake
2021-09-11AK: Forbid creating StringView from temporary ByteBufferBen Wiederhake
2021-09-04AK+LibRegex: Disable construction of views from temporary StringsIdan Horowitz
2021-08-26AK: Implement method to convert a String/StringView to title caseTimothy Flynn
2021-08-18AK+Kernel: StringView hash map Traits should not set peek type to StringBrian Gianforcaro
2021-08-02AK: Fix declaration of {String,StringView}::is_one_ofTimothy Flynn
2021-07-02AK: Implement String::find_any_of() and StringView::find_any_of()Max Wipfli
2021-07-02AK: Implement StringView::find_all()Max Wipfli
2021-07-02AK+Everywhere: Remove StringView::find_{first,last}_of(char) methodsMax Wipfli
2021-07-02AK: Reimplement StringView::find methods in StringUtilsMax Wipfli
2021-07-02AK: Implement StringView::to_{lower,upper}case_stringMax Wipfli
2021-06-27AK: Make the constexpr StringView methods actually constexprAli Mohammad Pur
2021-06-04AK: Inline *String::is_one_of<Ts...>()Ali Mohammad Pur
2021-06-01AK: Add trim() method to String, StringView and StringUtilsMax Wipfli
2021-05-14AK: Make StringView::hash() constexprAndreas Kling
2021-04-22AK/GenericLexer: constexpr where possibleLenny Maiorani
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-17AK: Remove String-from-StringView optimizationAndreas Kling
2021-04-12AK: Add a predicate variant of StringView::split_viewTimothy Flynn
2021-04-11AK: Annotate StringView functions as [[nodiscard]]Brian Gianforcaro
2021-02-24AK: Don't compare past '\0' in StringView::operator==(const char*)Andreas Kling
2021-02-24AK: Add support for AK::StringView literals with operator""svBrian Gianforcaro
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-23AK: Optimize StringView::operator==(const char*) a little bitAndreas Kling
2021-01-12AK: Add String{View,}::find(StringView)AnotherTest
2021-01-12AK: Simplify constructors and conversions from nullptr_tLenny Maiorani
2021-01-03AK: Add String{,View}::is_whitespace()AnotherTest
2020-12-21AK: Generalize AK::String::to_int() for more typesSahan Fernando
2020-11-07AK: Remove duplicate begin()/end() methodsNico Weber
2020-10-29AK: Make String::matches() capable of reporting match positions tooAnotherTest
2020-10-29AK: Add a `is_one_of()' to StringViewAnotherTest
2020-10-22AK: Enhance String::contains to allow case-insensitive searchesTom
2020-10-08AK: Make StringView hashableMatthew Olsson
2020-09-27AK: Move trim_whitespace() into StringUtils and add it to StringViewAnotherTest