pocketlang/tests
Alexander Patel 59333177cd pk_core: implement list addition
This commit implements list addition. A new list is allocated, and
the contents of l1 and l2 are concatenated onto the list.

This is done by extending the buffer template macro to support a
`concat` operation, which given an `other` buffer, appends all
elements of the `other` buffer to the end of the `self` buffer.
Allocations are done as needed.

We implement this additional operation, since the alternative would
be to call `reserve()` for each `write()` operation, which doesn't
seem ideal.

Issue: #55
2021-06-15 20:44:10 -07:00
..
benchmark CI-workflow implemented 2021-06-16 02:57:01 +05:30
examples Fix typos + rename variables (#73) 2021-06-15 13:07:49 +05:30
lang pk_core: implement list addition 2021-06-15 20:44:10 -07:00
check.py CI-workflow implemented 2021-06-16 02:57:01 +05:30
tests.py Merge pull request #77 from ThakeeNathees/ci-workflow2 2021-06-16 05:19:19 +05:30