aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add Writer::unshift_from for batch copying data in.Brian Cully2019-08-131-0/+52
| | | | | This is just the inverse of Reader::shift and exists for the same reasons.
* Add Reader::shift_into function for batch copying.Brian Cully2019-08-131-3/+67
| | | | | | This function can be used if you need to quickly copy a bunch of things from the buffer, as it only does its safety checks once, rather than on every item extraction.
* Version bump to 0.1.1.v0.1.1Brian Cully2019-08-131-1/+1
| | | | | | * Add more documentation. * Add `Iterator` implementation. * Optimize indexing by using unchecked variants.
* Documentation.Brian Cully2019-08-131-0/+19
|
* Add iterator implementation.Brian Cully2019-08-131-4/+28
|
* Use get_unchecked for backing array access.Brian Cully2019-08-131-4/+8
| | | | | The index is guaranteed to be in bounds because it's always modulo the array capacity, so use the unchecked variants to get/set values.
* Initial commit.v0.1.0Brian Cully2019-08-046-0/+1076