Learn R Programming

duckplyr (version 1.0.1)

is_duckplyr_df: Class predicate for duckplyr data frames

Description

[Deprecated]

Tests if the input object is of class "duckplyr_df".

Usage

is_duckplyr_df(.data)

Value

TRUE if the input object is of class "duckplyr_df", otherwise FALSE.

Arguments

.data

The object to test

Examples

Run this code
tibble(a = 1:3) %>%
  is_duckplyr_df()

tibble(a = 1:3) %>%
  as_duckplyr_df() %>%
  is_duckplyr_df()

Run the code above in your browser using DataLab