summaryrefslogtreecommitdiff
path: root/AK/StringView.cpp
AgeCommit message (Expand)Author
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: Fix StringView::find_last_of for one-character viewsTimothy Flynn
2021-04-12AK: Add a predicate variant of StringView::split_viewTimothy Flynn
2021-02-26Everywhere: Remove a bunch of redundant 'AK::' namespace prefixesLinus Groh
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-01-15StringView: Implement `find_first_of` in terms of `AK::find`Lenny Maiorani
2021-01-12AK: Use StringView::find() in StringView::split_view()AnotherTest
2021-01-12AK: Add String{View,}::find(StringView)AnotherTest
2021-01-11AK: Specialise convert_to_uint<T> and to_uint<T> for 'long' variantsAnotherTest
2020-12-21AK: Generalize AK::String::to_int() for more typesSahan Fernando
2020-10-29AK: Make String::matches() capable of reporting match positions tooAnotherTest
2020-10-22AK: Enhance String::contains to allow case-insensitive searchesTom
2020-09-21AK: Add StringView::substring_view(size_t) overload.asynts
2020-08-01AK: Add StringView::contains(StringView)AnotherTest
2020-07-21AK: Add case insensitive version of starts_withLuke
2020-06-12AK: Make string-to-number conversion helpers return OptionalAndreas Kling
2020-05-28AK: Add StringView::split_view() taking a StringViewAnotherTest
2020-05-26AK: Unify FlyString/StringView::ends_with implementation on StringUtils::ends...Brian Gianforcaro
2020-05-13AK: Add StringView::equals_ignoring_case()Linus Groh
2020-05-06AK: Add to_string() method to StringViewEmanuel Sprung
2020-05-04AK: Add StringView::find_first/last_ofAndrew Kaster
2020-04-17AK: Add StringView::contains(char)Stephan Unverwerth
2020-03-23AK: Reduce header dependency graph of String.hAndreas Kling
2020-03-22AK: Add FlyString, a simple flyweight string classAndreas Kling
2020-03-08AK: Move memory stuff (fast memcpy, etc) to a separate headerAndreas Kling
2020-03-02AK: Move to_int(), to_uint() implementations to StringUtils (#1338)howar6hill
2020-03-02AK: Move the wildcard-matching implementation to StringUtilshowar6hill
2020-03-01AK: Remove unnecessary casts to size_t, after Vector changesAndreas Kling
2020-02-22AK: Add StringView::starts_with(char) & StringView::ends_with(char)Shannon Booth
2020-02-14AK: Add a forward declaration headerAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-14AK: Fix String[View]::split_view() returning an extra empty partSergey Bugaev
2020-01-14AK: Don't return null from String[View]::substring_view()Sergey Bugaev
2019-12-29AK: Add StringView::ends_with functionShannon Booth
2019-12-09AK: Use size_t for the length of stringsAndreas Kling
2019-12-02AK: StringView::lines() should keep empty linesAndreas Kling
2019-12-02LibMarkdown: Handle CRLF line endingsTommy Nguyen
2019-09-28AK: Add a keep_empty argument to String[View]::substring{_view}Sergey Bugaev
2019-09-13StringView: Add starts_with methodMinusGix
2019-09-06AK: Rename <AK/AKString.h> to <AK/String.h>Andreas Kling
2019-08-25AK: Add StringView::hash()Andreas Kling
2019-08-04AK: Add StringView::to_int()Andreas Kling
2019-07-08StringView: Rename characters() to characters_without_null_termination().Andreas Kling
2019-06-29StringView: Make it easy to construct from a ByteBuffer.Andreas Kling
2019-06-14AK: Add more StringView utilities for making substrings.Sergey Bugaev
2019-06-08StringView: Store a StringImpl* rather than a String*.Andreas Kling
2019-06-03StringView: Make construction of String from a StringView containing a String...Robin Burchell
2019-06-02AK: Add implicit String -> StringView conversionRobin Burchell