summaryrefslogtreecommitdiff
path: root/AK/String.h
AgeCommit message (Expand)Author
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
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