summaryrefslogtreecommitdiff
path: root/AK
AgeCommit message (Expand)Author
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
2020-12-29AK+Format: Accept unsigned long in replacement fields.asynts
2020-12-29AK: Allow trailing '*'s in a glob pattern to match nothingAnotherTest
2020-12-28LibGfx+AK: Make text elision work with multi-byte charactersAndreas Kling
2020-12-28AK: Enable AK::SharedBuffer for all platformsAndrew Kaster
2020-12-28AK/Userland: Use AK/Endian.h for portable byte swapping in ntpqueryAndrew Kaster
2020-12-28AK: Add CLOCK_*_COARSE aliases for darwin and BSD variantsAndrew Kaster
2020-12-27Kernel: Allow Userspace<T> pointers with invalid contentAndreas Kling
2020-12-27AK: Use direct-list-initialization for Vector::empend() (#4564)Nathan Lanza