IntExpression

interface IntExpression : Expression<Int>

Specialization of Expression for Int allowing better performance because of using array.

Functions

Link copied to clipboard
abstract operator fun invoke(arguments: IntArray): Int
open operator override fun invoke(arguments: Map<Symbol, Int>): Int

Calls this expression from arguments.

Properties

Link copied to clipboard
abstract val indexer: SymbolIndexer

The indexer of this expression's arguments that should be used to build array for invoke.

Extensions

Link copied to clipboard
operator fun IntExpression.invoke(): Int

Calls this expression without providing any arguments.

operator fun IntExpression.invoke(vararg arguments: Int): Int

Calls this expression from arguments.

Sources

Link copied to clipboard