summaryrefslogtreecommitdiff
path: root/AK/StringView.h
AgeCommit message (Expand)Author
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
2020-09-21AK: Add StringView::substring_view(size_t) overload.asynts
2020-09-08AK: Add generic SimpleIterator class to replace VectorIterator.asynts
2020-08-20AK: Add StringView(ReadonlyBytes) constructor.asynts
2020-08-10disasm: Insert symbol names in disassembly streamNico Weber
2020-08-01AK: Add StringView::contains(StringView)AnotherTest
2020-07-27AK: Add span() / bytes() methods to container types.asynts
2020-07-21AK: Add case insensitive version of starts_withLuke
2020-06-12AK: Make string-to-number conversion helpers return OptionalAndreas Kling
2020-06-07AK: Add StringView::{begin,end} so we can range-for over StringViewsAndreas Kling