export function last(this: T[]): T | undefined { return this[this.length - 1] }