Garden 🌻

List::append

Return a new list with the value added to the end.

[10].append(11) //-> [10, 11]
Source Codepublic method append<T>(this: List<T>, value: T): List<T> {
  __BUILTIN_IMPLEMENTATION
}