Skip to content

Reduce Boolean Series with ALL

Source code

Description

Reduce Boolean Series with ALL

Usage

<Series>$all()

Value

A logical value

Examples

library(polars)

as_polars_series(c(TRUE, TRUE, NA))$all()
#> [1] FALSE