Skip to contents

length(which(x == y)) == 0 is the same as !any(x == y), but the latter is more readable and more efficient.

Usage

boolean_arithmetic_linter()

See also

linters for a complete list of linters available in lintr.

Examples

# will produce lints
lint(
  text = "length(which(x == y)) == 0L",
  linters = boolean_arithmetic_linter()
)
#> <text>:1:1: warning: [boolean_arithmetic_linter] Use any() to express logical aggregations. For example, replace length(which(x == y)) == 0 with !any(x == y).
#> length(which(x == y)) == 0L
#> ^~~~~~~~~~~~~~~~~~~~~

lint(
  text = "sum(grepl(pattern, x)) == 0",
  linters = boolean_arithmetic_linter()
)
#> <text>:1:1: warning: [boolean_arithmetic_linter] Use any() to express logical aggregations. For example, replace length(which(x == y)) == 0 with !any(x == y).
#> sum(grepl(pattern, x)) == 0
#> ^~~~~~~~~~~~~~~~~~~~~~

# okay
lint(
  text = "!any(x == y)",
  linters = boolean_arithmetic_linter()
)
#>  No lints found.

lint(
  text = "!any(grepl(pattern, x))",
  linters = boolean_arithmetic_linter()
)
#>  No lints found.