Interface FunctionValueGenerator

interface FunctionValueGenerator {
    type: "function";
    clone(): FunctionValueGenerator;
    genValue(memory: GeneratorMemory, t: number): number;
    startGen(memory: GeneratorMemory): void;
    toJSON(): FunctionJSON;
}

Implemented by

Properties

Methods

Properties

type: "function"

Methods