Age | Commit message (Expand) | Author |
---|---|---|
2020-08-20 | AK: Span: Fix signature of copy_to() and copy_trimmed_to(). | asynts |
2020-08-20 | AK: Span: Allow slicing with zero length. | asynts |
2020-08-17 | AK: Always call memmove in Span instead of memcpy. | asynts |
2020-08-15 | AK: Add slice() overload to Span. | asynts |
2020-08-15 | AK: Add fill() method to Span. | asynts |
2020-08-15 | AK: Add copy_to() and move_to() methods to AK::Span. | asynts |
2020-08-15 | AK: Remove incorrect static assert in Span.h. | asynts |
2020-08-11 | AK: Span<T>::operator=(const T&) => Span<T>::operator=(const Span<T>&) | AnotherTest |
2020-07-27 | AK: Rename Span::subspan() to Span::slice(). | asynts |
2020-07-27 | AK: Add offset() method to Span. | asynts |
2020-07-27 | AK: Add implicit conversion from nullptr to Span. | asynts |
2020-07-27 | AK: Add constructors to Bytes and ReadonlyBytes that take void pointers. | asynts |
2020-07-27 | AK: Define conversion from Span<T> to Span<const T> correctly. | asynts |
2020-07-26 | AK: Implement Span which represents a contiguous sequence of objects. | asynts |