seq
:
scan
head()
tail()
'['
'[['
'[<-'
'[[<-'
match()
%in%
findInterval()
split()
unsplit()
order()
sort()
duplicated()
tabulate()
invisible()
...
x <- list(a = c(1,2,3), b = c(4, 5, 6)) data.class(x[1])
## [1] "list"
# vs. data.class(x[[1]])
## [1] "numeric"