inExpression

fun inExpression(block: Expression.ExpressionBuilder.() -> Unit): Expression

Determines whether an item exists in an array or a substring exists in a string. In the specific case when the second and third arguments are string literals, you must wrap at least one of them in a #types-literal expression to hint correct interpretation to the #type-system.

fun inExpression(needle: String, haystack: Expression): Expression
fun inExpression(needle: Double, haystack: Expression): Expression

Determines whether an item exists in an array or a substring exists in a string.