slice
fun <T : ExpressionValue> Expression<ListValue<T>>.slice(startIndex: Expression<IntValue>, endIndex: Expression<IntValue>? = null): Expression<ListValue<T>>(source)
fun <T : ExpressionValue> Expression<ListValue<T>>.slice(startIndex: Int, endIndex: Int? = null): Expression<ListValue<T>>(source)
Returns the items in this list from the startIndex (inclusive) to the end of this list if endIndex is not specified or null
, otherwise to endIndex (exclusive).