/** * Retrieves all elements of the array except for the first. * * @tsplus getter NonEmptyImmutableArray tail */ export function tail(self: NonEmptyImmutableArray): ImmutableArray { return new ImmutableArray(self.array.slice(1)) }