Skip to content

Check strictly lower inequality

Source code

Description

Method equivalent of addition operator expr + other.

Usage

<Expr>$lt(other)

Arguments

other numeric or string value; accepts expression input.

Value

Expr

Examples

library(polars)

pl$lit(5) < 10
#> polars Expr: [(5.0) < (10.0)]
pl$lit(5) < pl$lit(10)
#> polars Expr: [(5.0) < (10.0)]
pl$lit(5)$lt(pl$lit(10))
#> polars Expr: [(5.0) < (10.0)]