| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove `core:container` contents | gingerBill | 2021-12-28 | 1 | -216/+0 |
| | | |||||
| * | Remove unneeded semicolons from the core library | gingerBill | 2021-08-31 | 1 | -69/+69 |
| | | |||||
| * | Change uses for parapoly records to use `$` always | gingerBill | 2021-06-14 | 1 | -1/+1 |
| | | |||||
| * | Fix container.Array and container.Ring | gingerBill | 2020-10-01 | 1 | -2/+5 |
| | | |||||
| * | Fix container.Array.array_push_back_elems | Tetralux | 2020-05-15 | 1 | -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` | gingerBill | 2020-04-19 | 1 | -12/+12 |
| | | |||||
| * | `container.Map` | gingerBill | 2020-04-19 | 1 | -5/+47 |
| | | |||||
| * | Fix `#optional_ok`; Fix `container.Array` | gingerBill | 2020-04-19 | 1 | -13/+13 |
| | | |||||
| * | `#optional_ok` tag for procedures | gingerBill | 2020-04-19 | 1 | -1/+9 |
| | | |||||
| * | `package container` with `Queue` and `Array` | gingerBill | 2020-04-17 | 1 | -0/+160 |