Skip to content

Check lower or equal inequality

Source code

Description

Method equivalent of addition operator expr + other.

Usage

<Expr>$lt_eq(other)

Arguments

other numeric or string value; accepts expression input.

Value

Expr

Examples

library(polars)

pl$lit(2) <= 2
#> polars Expr: [(2.0) <= (2.0)]
pl$lit(2) <= pl$lit(2)
#> polars Expr: [(2.0) <= (2.0)]
pl$lit(2)$lt_eq(pl$lit(2))
#> polars Expr: [(2.0) <= (2.0)]