Age | Commit message (Expand) | Author |
2021-08-06 | AK: Implement any_of using common implementation | Lenny Maiorani |
2021-08-06 | Kernel: Rename Kernel/VM/ to Kernel/Memory/ | Andreas Kling |
2021-08-06 | AK: Improve the parsing of data urls | TheFightingCatfish |
2021-08-06 | AK: Make StringBuilder::join() use appendff() instead of append() | Ali Mohammad Pur |
2021-08-04 | AK+LibJS: Implement String.from{CharCode,CodePoint} using UTF-16 strings | Timothy Flynn |
2021-08-04 | AK: Allow configuring the BumpAllocator chunk size | Timothy Flynn |
2021-08-04 | AK+LibRegex: Add Utf16View::code_point_at and use it in RegexStringView | Timothy Flynn |
2021-08-04 | AK+Kernel: Print TODO when a TODO() is executed | sin-ack |
2021-08-03 | AK: Mark Time::max() / Time::min() / Time::zero() as constexpr | Brian Gianforcaro |
2021-08-03 | Everywhere: Make use of container version of all_of | Lenny Maiorani |
2021-08-02 | AK: Fix declaration of {String,StringView}::is_one_of | Timothy Flynn |
2021-08-02 | AK: Add a simple bump allocator | Ali Mohammad Pur |
2021-08-02 | AK: Correct Tuple's constructor signatures | Ali Mohammad Pur |
2021-08-02 | AK: Add formatters for BigEndian and LittleEndian | sin-ack |
2021-07-31 | LibWeb: Define proper debug symbols for CSS Parser and Tokenizer | Sam Atkins |
2021-07-29 | AK: Update mmap name for MappedFiles on SerenityOS | Andreas Kling |
2021-07-27 | AK: Add copy_to span method for AK::MACAddress | Brian Gianforcaro |
2021-07-25 | AK: Create MACAddress from string | brapru |
2021-07-24 | AK: Reimplement all_of in terms of find_if | Lenny Maiorani |
2021-07-23 | AK+LibRegex: Partially implement case insensitive UTF-16 comparison | Timothy Flynn |
2021-07-23 | AK: Add UTF-16 helper methods required for use within LibRegex | Timothy Flynn |
2021-07-22 | CrashDaemon: Remove BACKTRACE_DEBUG debugging code | Andreas Kling |
2021-07-22 | AK: Add char SIMD types | Hendiadyoin1 |
2021-07-22 | AK: Rewrite {AnyOf,AllOf,Find}.h to use the IteratorPairWith concept | Ali Mohammad Pur |
2021-07-22 | AK: Convert AnyOf/AllOf to east-const style | Ali Mohammad Pur |
2021-07-22 | AK: Implement {any,all}_of(IterableContainer&&, Predicate) | Ali Mohammad Pur |
2021-07-22 | AK: Add a concept for iterable containers | Ali Mohammad Pur |
2021-07-22 | AK: Add a deduction guide to Vector | Ali Mohammad Pur |
2021-07-22 | AK: Add a CommonType<Ts...> type trait | Ali Mohammad Pur |
2021-07-22 | AK: Make TypeBoundsChecker<UnsignedIntegralT, FloatingPointT> work | Linus Groh |
2021-07-22 | AK: Add Utf16View for decoding UTF-16 strings | Timothy Flynn |
2021-07-22 | AK: Disable clang-format for AK/Time.h | Gunnar Beutner |
2021-07-22 | AK: Add a getter to JsonValue to get machine-native addresses | Gunnar Beutner |
2021-07-21 | AK: Sprinkle [[nodiscard]] on AK::Array | Andreas Kling |
2021-07-21 | AK: Convert Array to east-const style | Andreas Kling |
2021-07-21 | AK: Remove unused private HashTable::lookup_for_reading() | Andreas Kling |
2021-07-21 | AK: Sprinkle [[nodiscard]] on HashMap and HashTable | Andreas Kling |
2021-07-21 | AK: Sprinkle [[nodiscard]] on AK::Bitmap | Andreas Kling |
2021-07-21 | AK: Remove unused HashMap::remove_one_randomly() | Andreas Kling |
2021-07-19 | Everywhere: Use AK/Math.h if applicable | Hendiadyoin1 |
2021-07-19 | AK: Introduce Math.h | Hendiadyoin1 |
2021-07-19 | AK: Use new Formatter for each element in Formatter<Vector<T>> | Andrew Kaster |
2021-07-19 | AK: Use StringView literals in Format to avoid strlen | Andrew Kaster |
2021-07-18 | AK: Add the at()/operator[]() getter to Utf32View | Ali Mohammad Pur |
2021-07-18 | AK: Add a is_null() method to Utf{8,32}View | Ali Mohammad Pur |
2021-07-18 | AK: Don't return a null Utf32View when a zero-length one is requested | Ali Mohammad Pur |
2021-07-18 | Kernel: Introduce basic pre-kernel environment | Gunnar Beutner |
2021-07-18 | AK: Add helper type for serializing structures into buffer | Sahan Fernando |
2021-07-18 | AK: Allow setting both width and precision when formatting a string | Timothy Flynn |
2021-07-17 | AK: Track byte length, rather than code point length, in Utf8View::trim | Timothy Flynn |