greaterEq

open infix fun <T : Comparable<T>, S : T?> ExpressionWithColumnType<in S>.greaterEq(t: T): GreaterEqOp
@JvmName(name = "greaterEqEntityID")
open infix fun <T : Comparable<T>> Column<EntityID<T>>.greaterEq(t: T): GreaterEqOp

Deprecated (with error)

This interface method will be removed following release 1.0.0 and should be replaced with the equivalent top-level function.

Replace with

import org.jetbrains.exposed.v1.core.greaterEq
this greaterEq t

open infix fun <T : Comparable<T>, S : T?> Expression<in S>.greaterEq(other: Expression<in S>): GreaterEqOp
open infix fun <T : Comparable<T>, E : EntityID<T>?, V : T?> ExpressionWithColumnType<E>.greaterEq(other: Expression<in V>): GreaterEqOp
@JvmName(name = "greaterEqBetweenEntityIDs")
open infix fun <T : Comparable<T>, E : EntityID<T>?> Expression<E>.greaterEq(other: Expression<E>): GreaterEqOp

Deprecated (with error)

This interface method will be removed following release 1.0.0 and should be replaced with the equivalent top-level function.

Replace with

import org.jetbrains.exposed.v1.core.greaterEq
this greaterEq other