leq

infix fun Column.leq(other: Any): Column

Less than or equal to.

// Scala: The following selects people age 21 or younger than 21.
people.select( people("age") <= 21 )

// Kotlin:
import org.jetbrains.kotlinx.spark.api.*
people.select( people("age") leq 21 )

// Java:
import static org.apache.spark.sql.functions.*;
people.select( people.col("age").leq(21) );