Skip to content

Type Alias: FunctionValueDto

@kortexya/reasoninglayer


@kortexya/reasoninglayer / Functions / FunctionValueDto

Type Alias: FunctionValueDto

FunctionValueDto = { type: "Integer"; value: number; } | { type: "Real"; value: number; } | { type: "String"; value: string; } | { type: "Boolean"; value: boolean; } | { type: "Uninstantiated"; }

Defined in: src/types/functions.ts:14

Value type for LIFE-style function literals.

Remarks

Uses tagged serialization with a type discriminator.