summaryrefslogtreecommitdiff
path: root/AK
AgeCommit message (Expand)Author
2020-09-26AK: Alphabetically sort the ctype adaptersBenoit Lormeau
2020-09-26AK: Added explanatory comments in GenericLexer.hBenoit Lormeau
2020-09-26AK: Borrow exact format syntax form std::format.asynts
2020-09-26AK: Add GenericLexer::remaining.asynts
2020-09-25Meta+AK: Make clang-format-10 cleanBen Wiederhake
2020-09-23Applications+IRCClient: Use new format functions.asynts
2020-09-23AK: Add outf, warnf and dbgf.asynts
2020-09-23AK: Resolve format related circular dependencies properly.asynts
2020-09-23AK: Allow calling format without arguments.asynts
2020-09-22AK: Add missing overload to format.asynts
2020-09-22AK: Use format in String::number.asynts
2020-09-22AK: Consider long and unsigned long as integral types.asynts
2020-09-22AK: Add StringBuilder::appendff using the new format.asynts
2020-09-22AK: Remove strtoull dependency from format.asynts
2020-09-21AK: Add format function like std::format or fmt::format.asynts
2020-09-21AK: Add template deduction guides for Array.asynts
2020-09-21AK: Add StringView::substring_view(size_t) overload.asynts
2020-09-21AK: Remove BufferStream class.asynts
2020-09-21LibAudio: Use InputMemoryStream instead of BufferStream.asynts
2020-09-21AK: Add missing const in Span::operator==.asynts
2020-09-21AK: Add OutputMemoryStream::is_end.asynts
2020-09-15AK: Add OutputMemoryStream::fill_to_end.asynts
2020-09-15AK: Re-add OutputMemoryStream for static buffers only.asynts
2020-09-15AK: Remove OutputMemoryStream for DuplexMemoryStream.asynts
2020-09-14AK: Lower the requirements for InputStream::eof and rename it.asynts
2020-09-12AK: Fix PrintfImplementation "%x" handling for u32AnotherTest
2020-09-12AK: Fix forward-declaration of ArrayBen Wiederhake
2020-09-12AK: Fix accidentally-recursive call in BitStreamBen Wiederhake
2020-09-11AK: Generalise 'PrintfImplementation'AnotherTest
2020-09-11AK: Calculate the chunk index correctly in DuplexMemoryStream.asynts
2020-09-10AK: Replace LogStream operator for ReadonlyBytes with dump_bytes.asynts
2020-09-09AK: Use TypedTransfer in Span::copy_to.asynts
2020-09-09AK: Moved TypedTransfer into it's own header.asynts
2020-09-09AK: Add Bitmap::find_one_anywhere and optimize Bitmap::find_firstTom
2020-09-08AK: Remove empty destructor from JsonParser.asynts
2020-09-08AK: Remove FixedArray class.asynts
2020-09-08Refactor: Replace usages of FixedArray with Vector.asynts
2020-09-08Refactor: Replace usages of FixedArray with Array.asynts
2020-09-08AK: Add Array<T, Size> template.asynts
2020-09-08AK: Add generic SimpleIterator class to replace VectorIterator.asynts
2020-09-06AK: Vector use Traits<T>::equals in findMuhammad Zahalqa
2020-09-06AK: SinglyLinkedList use Traits<T>::equals in findMuhammad Zahalqa
2020-09-06AK: Add Bitmap::count_in_range and Bitmap::fill_rangeTom
2020-09-06AK: Add LogStream overload for ReadonlyBytes.asynts
2020-09-06AK: Add JsonObject::remove()Andreas Kling
2020-09-06LibCompress: Simplify logic in deflate implementation.asynts
2020-09-06Streams: Consistent behaviour when reading from stream with error.asynts
2020-09-06AK: Add Buffered<T> which wraps a stream, adding input buffering.asynts
2020-09-06AK: Add log stream operator overload for Span.asynts
2020-09-05AK: Make all DoublyLinkedList search methods use Traits<T>::equals (#3404)Muhammad Zahalqa