diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-23 13:24:06 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-23 13:24:06 -0500 |
| commit | 9f56266ae4a2d458576821d74906ab5bc4498b5b (patch) | |
| tree | 19cd055dd1020af788896132e6905bec4b59697f /builtins/array.h | |
| parent | 9aec32149fae328d73ee4816bc12e56c65327cbf (diff) | |
Implement Array__concat and ++=
Diffstat (limited to 'builtins/array.h')
| -rw-r--r-- | builtins/array.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtins/array.h b/builtins/array.h index 65b7028c..5a4b29ab 100644 --- a/builtins/array.h +++ b/builtins/array.h @@ -32,6 +32,7 @@ void Array__clear(array_t *array, const TypeInfo *type); void Array__compact(array_t *arr, const TypeInfo *type); bool Array__contains(array_t array, void *item, const TypeInfo *type); array_t Array__slice(array_t *array, int64_t first, int64_t stride, int64_t length, bool readonly, const TypeInfo *type); +array_t Array__concat(array_t *x, array_t *y, const TypeInfo *type); uint32_t Array__hash(const array_t *arr, const TypeInfo *type); int32_t Array__compare(const array_t *x, const array_t *y, const TypeInfo *type); bool Array__equal(const array_t *x, const array_t *y, const TypeInfo *type); |
