/** * Retrieves the last element of the array. * * @tsplus getter NonEmptyImmutableArray last */ export function last(self: NonEmptyImmutableArray): A { return self.array[self.array.length - 1]! }