summaryrefslogtreecommitdiff
path: root/AK/String.h
AgeCommit message (Expand)Author
2020-12-10AK: Add String::substring(start)Andreas Kling
2020-12-09AK: Add String::substring_view(size_t).asynts
2020-10-29AK: Make String::matches() capable of reporting match positions tooAnotherTest
2020-10-22AK: Enhance String::contains to allow case-insensitive searchesTom
2020-10-03Everywhere: Fix more typosLinus Groh
2020-10-02AK+Format: Do some housekeeping in the format implementation.asynts
2020-09-27AK: Move trim_whitespace() into StringUtils and add it to StringViewAnotherTest
2020-09-23AK: Resolve format related circular dependencies properly.asynts
2020-09-22AK: Use format in String::number.asynts
2020-09-14AK: Lower the requirements for InputStream::eof and rename it.asynts
2020-09-08AK: Add generic SimpleIterator class to replace VectorIterator.asynts
2020-09-01Streams: Distinguish recoverable and fatal errors.asynts
2020-08-30AK: Add String::copy_characters_to_buffer()Sergey Bugaev
2020-08-30AK: Stream operators for String for generic streams.asynts
2020-08-24AK: Document that String{,Impl} contains NUL-terminatorBen Wiederhake
2020-08-06AK: Add InputStream abstraction and InputMemoryStream implementation.asynts
2020-08-06AK: Add String constructor from ReadonlyBytes.asynts
2020-07-28AK: Tweak String::is_one_of() and FlyString::is_one_of()Andreas Kling
2020-07-27AK: Add span() / bytes() methods to container types.asynts
2020-07-21AK: Add case insensitive version of starts_withLuke
2020-07-13AK: Give String::index_of() an optional second "start" argumentNico Weber
2020-06-12AK: Make string-to-number conversion helpers return OptionalAndreas Kling
2020-05-30AK: Make {String,FlyString}::is_one_of() constAndreas Kling
2020-05-26AK: Mark some popular String member functions ALWAYS_INLINEAndreas Kling
2020-05-26AK: Add case insensitive String::ends_with supportBrian Gianforcaro
2020-05-25AK: Add String::is_one_of(...)Andreas Kling
2020-05-13AK: Replace String::trim_spaces() with String::trim_whitespace()Linus Groh
2020-05-11AK: Add String::trim_spaces()Linus Groh
2020-04-13LibELF: Add find_demangled_functionItamar
2020-04-01AK: Add String::replace() functionalityEmanuel Sprung
2020-03-28AK: Add some string comparison operatorsAndreas Kling
2020-03-23AK: Reduce header dependency graph of String.hAndreas Kling
2020-03-22AK: Add FlyString::to_lowercase() and LogStream operator<<(FlyString)Andreas Kling
2020-03-10AK: Add begin() and end() to String and StringViewhowar6hill
2020-03-08AK: Move memory stuff (fast memcpy, etc) to a separate headerAndreas Kling
2020-03-08AK: Use __builtin_memset() and such to reduce header dependenciesAndreas 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-02-15AK: Add String starts_with(char) & ends_with(char)Shannon Booth
2020-02-14AK: Add a forward declaration headerAndreas Kling
2020-02-13AK: Move escape_html_entities() from LibHTML to AKAndreas Kling
2020-02-10AK: Remove bitrotted Traits::dump() mechanismAndreas Kling
2020-02-05AK: Break String::number() overloads into i/l/ll and u/ul/ullAndreas Kling
2020-02-05AK: Add support for 64-bit size_tjoshua stein
2020-01-22AK: Also add a keep_empty argument to String::split[_limit]()Sergey Bugaev
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-06AK+Demos+Libraries: Remove executable permissions from {.cpp,.h} filesShannon Booth
2019-12-18AK: Add String::equals_ignoring_case(StringView)Andreas Kling
2019-12-09AK: Use size_t for the length of stringsAndreas Kling
2019-10-28AK: Add String::contains(String)Andreas Kling