CondExpression

data class CondExpression(val branches: List<Pair<String, String>>, val default: String) : Expression

Constructors

Link copied to clipboard
constructor(branches: List<Pair<String, String>>, default: String)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
operator fun Expression.div(other: Expression): Expression
Link copied to clipboard
operator fun Expression.minus(other: Expression): Expression
Link copied to clipboard
operator fun Expression.plus(other: Expression): Expression
Link copied to clipboard
operator fun Expression.times(other: Expression): Expression
Link copied to clipboard
open override fun toMongoExpression(): Map<String, Map<String, Any>>