is_duckplyr_df: Class predicate for duckplyr data frames

View source: R/is_duckplyr_df.R

is_duckplyr_dfR Documentation

Class predicate for duckplyr data frames

Description

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

Usage

is_duckplyr_df(.data)

Arguments

.data

The object to test

Value

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

Examples

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

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

duckplyr documentation built on Sept. 12, 2024, 9:36 a.m.