append method
void
append(
- T value
Appends an item to the end of the vector.
Implementation
void append(T value) {
if (isSameType<T, int>()) return _append_int(value as int);
if (isSameType<T, String>()) return _append_String(value as String);
if (isSameType<T, Uri>()) return _append_Uri(value as Uri);
if (isSubtypeOfWinRTEnum<T>()) return _append_enum(value as WinRTEnum);
return _append_COMObject(value);
}