HenrikBengtsson / R.oo

R package: R.oo - R Object-Oriented Programming with or without References
https://cran.r-project.org/package=R.oo
20 stars 1 forks source link

CLEANUP: Use seq(along=x) instead of seq(x) #12

Closed HenrikBengtsson closed 8 years ago

HenrikBengtsson commented 8 years ago

Discovered:

R.oo/R/BasicObject.R:  for (ii in seq(fields)) {
R.oo/R/BasicObject.R:      for (jj in seq(matchNames)) {

Can both be replaced by seq(along=...)?