gt

infix fun <T : Number, S : Number> QueryTree<T>.gt(other: QueryTree<S>): QueryTree<Boolean>

Compares the numeric values of two QueryTrees for this being "greater than" (>) other.


infix fun <T : Number, S : Number> QueryTree<T>.gt(other: S): QueryTree<Boolean>

Compares the numeric values of a QueryTree and another number for this being "greater than" (>) other.