last: Last element of a vector or list

lastR Documentation

Last element of a vector or list

Description

Returns the last element of a list or vector.

Usage

last(x)

Arguments

x

a list or vector.

Details

Designed to be faster than using tail() or rev(), and cleaner than writing x[length(x)].

Value

An object of the same type as x of length 1 (or empty if x is empty).

Author(s)

Robin Evans

See Also

tail, rev.

Examples


last(1:10)


rje documentation built on Nov. 12, 2022, 9:06 a.m.