Skip to content

check if schema

Source code

Description

check if schema

Usage

pl$is_schema(x)

Arguments

x object to test if schema

Value

bool

Examples

library(polars)

pl$is_schema(pl$DataFrame(iris)$schema)
#> [1] TRUE
pl$is_schema(list("alice", "bob"))
#> [1] FALSE