| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Change uses for parapoly records to use `$` always | gingerBill | 2021-06-14 | 1 | -1/+1 |
| | | |||||
| * | Reuse container.Queue capacity when calling pop_front() | Tetralux | 2020-10-26 | 1 | -0/+3 |
| | | | | | | | Currently, the Queue will never reuse it's full capacity if you call `pop_front`, even if you empty it before pushing more items. With this change, if you empty the Queue with `pop_front`, then the offset will be set back to the start of the underlying array when you pop the last item. Future pushes will then reuse the already-allocated--but now empty--space. | ||||
| * | `container.Map` | gingerBill | 2020-04-19 | 1 | -1/+25 |
| | | |||||
| * | `package container` with `Queue` and `Array` | gingerBill | 2020-04-17 | 1 | -0/+148 |