aboutsummaryrefslogtreecommitdiff
path: root/core/container/array.odin
Commit message (Collapse)AuthorAgeFilesLines
* Change uses for parapoly records to use `$` alwaysgingerBill2021-06-141-1/+1
|
* Fix container.Array and container.RinggingerBill2020-10-011-2/+5
|
* Fix container.Array.array_push_back_elemsTetralux2020-05-151-5/+8
| | | | | | | | | | | We were previously using array_slice to get the storage that we were copying the new elements into, using the current length as the offset: `copy(data[len:], ..elems)` However, array_slice returns a slice over `data[0:len]` -- we were using it as if it was `data[0:cap]`. Add array_cap_slice that does this instead. :^)
* `container.Small_Array`gingerBill2020-04-191-12/+12
|
* `container.Map`gingerBill2020-04-191-5/+47
|
* Fix `#optional_ok`; Fix `container.Array`gingerBill2020-04-191-13/+13
|
* `#optional_ok` tag for proceduresgingerBill2020-04-191-1/+9
|
* `package container` with `Queue` and `Array`gingerBill2020-04-171-0/+160