lengths()
is a function that was added to base R in version 3.2.0 to
get the length of each element of a list. It is equivalent to
sapply(x, length)
, but faster and more readable.
See also
linters for a complete list of linters available in lintr.
Examples
# will produce lints
lint(
text = "sapply(x, length)",
linters = lengths_linter()
)
#> ::warning file=<text>,line=1,col=1::file=<text>,line=1,col=1,[lengths_linter] Use lengths() to find the length of each element in a list.
lint(
text = "vapply(x, length, integer(1L))",
linters = lengths_linter()
)
#> ::warning file=<text>,line=1,col=1::file=<text>,line=1,col=1,[lengths_linter] Use lengths() to find the length of each element in a list.
lint(
text = "purrr::map_int(x, length)",
linters = lengths_linter()
)
#> ::warning file=<text>,line=1,col=1::file=<text>,line=1,col=1,[lengths_linter] Use lengths() to find the length of each element in a list.
# okay
lint(
text = "lengths(x)",
linters = lengths_linter()
)