aboutsummaryrefslogtreecommitdiff
path: root/core/container
Commit message (Collapse)AuthorAgeFilesLines
* Enforce `core:builtin` and `core:intrinsics` for importsgingerBill2021-08-211-1/+1
|
* Fix error: Cannot assign to a procedure parameterstreof2021-07-091-0/+1
|
* Fix error: Undeclared name: pstreof2021-07-091-1/+1
|
* Change uses for parapoly records to use `$` alwaysgingerBill2021-06-146-7/+7
|
* Fix `container/map.odin`gingerBill2021-06-011-4/+4
|
* Add `linalg.matrix_cast`gingerBill2021-03-261-1/+1
|
* Add `container.Priority_Queue`breeo2021-03-251-0/+113
|
* Make `container.Map` have similar semantics to the built-in `map` typegingerBill2020-12-151-37/+49
|
* Reuse container.Queue capacity when calling pop_front()Tetralux2020-10-261-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.
* Fix container.Array and container.RinggingerBill2020-10-012-3/+6
|
* Remove usage of `do` in core librarygingerBill2020-09-231-1/+3
|
* Fix typo in Small_Array proceduregingerBill2020-09-141-1/+1
|
* Update ring.odinPlatin212020-08-221-1/+1
| | | Someone missed the T type here ;)
* Commit fixgingerBill2020-06-162-3/+1
|
* Add `hash.djb2` `hash.jenkins`; Add `container.Bloom_Filter`; Add ↵gingerBill2020-06-162-0/+153
| | | | `container.Ring`
* 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. :^)
* Remove unused headersgingerBill2020-04-212-7/+0
|
* `container.Set`gingerBill2020-04-202-7/+251
|
* `container.Small_Array`gingerBill2020-04-191-0/+97
|
* `container.Small_Array`gingerBill2020-04-191-12/+12
|
* `container.Map`gingerBill2020-04-193-6/+438
|
* 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-172-0/+308