R/is_duckplyr_df.R
is_duckplyr_df.Rd
Tests if the input object is of class "duckplyr_df".
"duckplyr_df"
is_duckplyr_df(.data)
The object to test
TRUE if the input object is of class "duckplyr_df", otherwise FALSE.
TRUE
FALSE
tibble(a = 1:3) %>% is_duckplyr_df() #> [1] FALSE tibble(a = 1:3) %>% as_duckplyr_df() %>% is_duckplyr_df() #> [1] TRUE