List

data class List(val elements: List<FeelValue>) : FeelValue

List value (1-based indexing).

Example: 1 returns 1 (first element)

Constructors

Link copied to clipboard
constructor(elements: List<FeelValue>)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
inline fun <T : Any> asType(): T

Convert to Kotlin type T.

Link copied to clipboard

Check if this value is null.

Link copied to clipboard
fun toKotlin(): Any?

Convert FEEL value to Kotlin type.

Link copied to clipboard
open override fun toString(): String