is_duckplyr_df {duckplyr} | R Documentation |
Tests if the input object is of class "duckplyr_df"
.
is_duckplyr_df(.data)
.data |
The object to test |
TRUE
if the input object is of class "duckplyr_df"
,
otherwise FALSE
.
tibble(a = 1:3) %>%
is_duckplyr_df()
tibble(a = 1:3) %>%
as_duckplyr_df() %>%
is_duckplyr_df()