Nothing
testthat::test_that("duplicated all", {
# numeric
x <- c(1, 2, 1)
testthat::expect_equal(duplicated_all(x), c(TRUE, FALSE, TRUE))
# character
x <- c("a", "b", "a")
testthat::expect_equal(duplicated_all(x), c(TRUE, FALSE, TRUE))
# logical
x <- c(TRUE, FALSE, TRUE)
testthat::expect_equal(duplicated_all(x), c(TRUE, FALSE, TRUE))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.