enum {SciViews} | R Documentation |
Enumerate items in an object.
Description
enum()
is creating a vector of integers to enumarate items in an object. It
is particularly useful in the for(i in enum(object))
construct.
Usage
enum(x)
Arguments
x |
Any object. |
Note
The pattern for(i in 1:length(object))
is often found, but it fails
in case length(object) == 0
! enum()
is indeed a synonym of seq_along()
,
but the later one is less expressive in the context.
See Also
Examples
enum(letters)
enum(numeric(0))
# Compare with:
1:length(numeric(0))
enum(NULL)
letters5 <- letters[1:5]
for (i in enum(letters5)) cat("letter", i, "=", letters5[i], "\n")
[Package SciViews version 0.9-13.1 Index]