Expression

data class Expression<out T>(source)

Types

Link copied to clipboard

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open operator fun Expression<Dp>.div(b: Expression<Dp>): Expression<Dp>
Link copied to clipboard
open infix fun Expression<*>.eq(other: Expression<*>): Expression<Boolean>
Link copied to clipboard
open operator fun <T> Expression<List<T>>.get(index: Expression<Number>): Expression<T>
Link copied to clipboard
open infix fun Expression<Dp>.gt(other: Expression<Dp>): Expression<Boolean>
Link copied to clipboard
open infix fun Expression<Dp>.gte(other: Expression<Dp>): Expression<Boolean>
Link copied to clipboard
open infix fun Expression<*>.in(other: Expression<List<*>>): Expression<Boolean>
Link copied to clipboard
open infix fun Expression<Dp>.lt(other: Expression<Dp>): Expression<Boolean>
Link copied to clipboard
open infix fun Expression<Dp>.lte(other: Expression<Dp>): Expression<Boolean>
Link copied to clipboard
open operator fun Expression<Dp>.minus(other: Expression<Dp>): Expression<Dp>
open operator fun Expression<Number>.minus(other: Expression<Number>): Expression<Number>
Link copied to clipboard
open infix fun Expression<*>.neq(other: Expression<*>): Expression<Boolean>
Link copied to clipboard
open operator fun Expression<Boolean>.not(): Expression<Boolean>
Link copied to clipboard
open operator fun Expression<Dp>.plus(other: Expression<Dp>): Expression<Dp>
open operator fun Expression<Number>.plus(other: Expression<Number>): Expression<Number>
Link copied to clipboard
Link copied to clipboard
open operator fun Expression<Dp>.rem(b: Expression<Dp>): Expression<Dp>
Link copied to clipboard
Link copied to clipboard
open operator fun Expression<Dp>.times(other: Expression<Dp>): Expression<Dp>
open operator fun Expression<Number>.times(other: Expression<Number>): Expression<Number>
Link copied to clipboard
open operator fun Expression<Dp>.unaryMinus(): Expression<Dp>