summaryrefslogtreecommitdiff
path: root/AK/Span.h
AgeCommit message (Expand)Author
2021-01-12AK: Simplify constructors and conversions from nullptr_tLenny Maiorani
2020-12-19AK: Mark some Span functions with [[nodiscard]]Andreas Kling
2020-12-19LibTLS+LibCrypto: More ByteBuffer -> Span conversionAndreas Kling
2020-12-19LibTLS+LibCrypto: Replace a whole bunch of ByteBuffers with SpansAndreas Kling
2020-10-16Span: constexpr supportLenny Maiorani
2020-09-21AK: Add missing const in Span::operator==.asynts
2020-09-15AK: Add OutputMemoryStream::fill_to_end.asynts
2020-09-09AK: Use TypedTransfer in Span::copy_to.asynts
2020-09-08Refactor: Replace usages of FixedArray with Vector.asynts
2020-09-08AK: Add generic SimpleIterator class to replace VectorIterator.asynts
2020-08-20AK: Span: Fix signature of copy_to() and copy_trimmed_to().asynts
2020-08-20AK: Span: Allow slicing with zero length.asynts
2020-08-17AK: Always call memmove in Span instead of memcpy.asynts
2020-08-15AK: Add slice() overload to Span.asynts
2020-08-15AK: Add fill() method to Span.asynts
2020-08-15AK: Add copy_to() and move_to() methods to AK::Span.asynts
2020-08-15AK: Remove incorrect static assert in Span.h.asynts
2020-08-11AK: Span<T>::operator=(const T&) => Span<T>::operator=(const Span<T>&)AnotherTest
2020-07-27AK: Rename Span::subspan() to Span::slice().asynts
2020-07-27AK: Add offset() method to Span.asynts
2020-07-27AK: Add implicit conversion from nullptr to Span.asynts
2020-07-27AK: Add constructors to Bytes and ReadonlyBytes that take void pointers.asynts
2020-07-27AK: Define conversion from Span<T> to Span<const T> correctly.asynts
2020-07-26AK: Implement Span which represents a contiguous sequence of objects.asynts