inExpression

@JvmStatic
fun inExpression(vararg expressions: Expression): 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.


DSL function for "in".


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

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