add Array::Append

pull/1/head
an 2019-08-14 04:31:58 -04:00
parent 03f151dca4
commit b7f8614ab4
1 changed files with 6 additions and 0 deletions

View File

@ -12,6 +12,7 @@ struct Array<Type>
uint Max() const;
uint Size() const;
void Append(array<Type> other);
void Copy(array<Type> other);
void Move(array<Type> other);
@ -51,6 +52,11 @@ struct Array<Type>
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