diff --git a/api-base-Array.md b/api-base-Array.md index 141f45b..ea128f7 100644 --- a/api-base-Array.md +++ b/api-base-Array.md @@ -12,6 +12,7 @@ struct Array uint Max() const; uint Size() const; + void Append(array other); void Copy(array other); void Move(array other); @@ -51,6 +52,11 @@ struct Array Removes the last item in the array, possibly destroying it. Returns `false` if there are no items in the array to begin with. +- `Append` + + Value-copies another array's contents and places them into this array at the + end. + - `Copy` Value-copies another array's contents into this array. The contents of