summaryrefslogtreecommitdiff
path: root/AK
AgeCommit message (Expand)Author
2021-01-15AK: Add String::join() helper functionLinus Groh
2021-01-15AK: Add JsonArray(const Vector<T>) constructorLinus Groh
2021-01-15Badge: Access to underlying typeLenny Maiorani
2021-01-15StringView: Implement `find_first_of` in terms of `AK::find`Lenny Maiorani
2021-01-15AK: Implement generic any_of algorithmLenny Maiorani
2021-01-12AK: Use StringView::find() in StringView::split_view()AnotherTest
2021-01-12AK: Add String{View,}::find(StringView)AnotherTest
2021-01-12LibC+Everywhere: Remove open_with_path_length() in favor of open()Andreas Kling
2021-01-12AK: Simplify constructors and conversions from nullptr_tLenny Maiorani
2021-01-11AK: Specialise convert_to_uint<T> and to_uint<T> for 'long' variantsAnotherTest
2021-01-11AK: Enable format string warnings for AK printf wrappersSahan Fernando
2021-01-11SinglyLinkedList: Implement `find` in terms of `AK::find`Lenny Maiorani
2021-01-11DoublyLinkedList: Implement `find` in terms of `AK::find`Lenny Maiorani
2021-01-11Vector: Implement `find`, `find_if`, `find_first_matching` in terms of `AK::f...Lenny Maiorani
2021-01-11AK: Find a value in any container offering iteratorsLenny Maiorani
2021-01-11Everywhere: Replace a bundle of dbg with dbgln.asynts
2021-01-10TestTypeTraits: Fix incorrectly namespaced nullptr_tLenny Maiorani
2021-01-10AK: Make MappedFile heap-allocated and ref-countedAndreas Kling
2021-01-10AK: Add AK::OSError, a wrapper for errno codesAndreas Kling
2021-01-09AK: Add static Singleton::get function to allow destructible globalsTom
2021-01-09AK: Add Formatter<FormatString> as helper class.asynts
2021-01-09AK: Add release_value() and release_error() to AK::ResultAndreas Kling
2021-01-04AK: Add default memory order as template argument for Atomic<T>Tom
2021-01-04AK: Decorate RefCountedBase::try_ref with nodiscardTom
2021-01-03AK: Add String{,View}::is_whitespace()AnotherTest
2021-01-02AK: Use size_t in methods of Utf8View.asynts
2021-01-02AK: Remove redundant compare() functions.asynts
2021-01-02Piggyback: AK: Add formatter for std::nullptr_t.asynts
2021-01-01AK: Add Result<void, ErrorType> specialization, cleanupAndrew Kaster
2021-01-01AK: Add the UUID containerLiav A
2021-01-01AK: Deal with unsigned integers in binary search.asynts
2021-01-01AK+LibGUI+LibWeb: Remove AK::TypeTraits in favor of RTTI-based helpersAndreas Kling
2020-12-31Everywhere: Re-format with clang-format-11Linus Groh
2020-12-31AK: Add missing 'template' keywords in TypeListLinus Groh
2020-12-31AK: Add operator* and operator-> overloads in Optional.asynts
2020-12-31AK: Fix some WeakPtr copy constructor variants not copying the linkTom
2020-12-31AK: Fix a race condition with WeakPtr<T>::strong_ref and destructionTom
2020-12-30AK+ProtocolServer: Properly close download stream fd'sAnotherTest
2020-12-30AK+Format: Remove TypeErasedFormatParams& from format function.asynts
2020-12-30AK: Add {Input,Output}FileStreamAnotherTest
2020-12-30AK: Add a ByteBuffer::copy(ReadonlyBytes) overloadAnotherTest
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-30AK: Add tests for type traits and IndexSequenceAndrew Kaster
2020-12-30AK: Add a TypeList class for expanded compile-time toolsAndrew Kaster
2020-12-30AK: Add IsArithmetic and IsFundamental type traitsAndrew Kaster
2020-12-30AK: Correct name in TestMain for TestTrieAndrew Kaster
2020-12-30AK: Use MacOS pthread_get_stacksize_np to get stack size for StackInfoAndrew Kaster
2020-12-30AK: Make binary_search signature more generic.asynts
2020-12-29AK: Add HashMap(std::initializer_list<Entry>) constructorLinus Groh