Context

data class Context(val entries: Map<String, FeelValue>) : FeelValue

Context value (map with string keys).

Example: {name: 'Alice', age: 30}

Constructors

Link copied to clipboard
constructor(entries: Map<String, 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