MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / Append

Method Append

source/script_object.cpp:899–906  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

897//
898
899bool Array::Append(ExprTokenType &aValue)
900{
901 if (mLength == MaxIndex || !EnsureCapacity(mLength + 1))
902 return false;
903 auto &item = mItem[mLength++];
904 item.Minit();
905 return item.Assign(aValue);
906}
907
908
909//

Callers 1

FromEnumerableMethod · 0.45

Calls 2

MinitMethod · 0.80
AssignMethod · 0.45

Tested by

no test coverage detected