Extract or replace the *ult*imate (last) element of a vector or a list, or an element counting from the end.
ult(x, i = 1L) <- valueult(x, i = 1L)
An element of `x`.
a vector or a list.
index from the end of the list to extract or replace (where 1 is the last element, 2 is the penultimate element, etc.).
Replacement value for the `i`th element from the end.
(x <- c(1:5))
(ult(x) <- 6)
(ult(x, 2) <- 7) # 2nd last.
x
# \dontshow{
stopifnot(all(x == c(1:3, 7L, 6L)))
# }
x <- 1:5
(last <- ult(x))
(penultimate <- ult(x, 2)) # 2nd last.
# \dontshow{
stopifnot(last==5)
stopifnot(penultimate==4)
# }
Run the code above in your browser using DataLab