hyperformula-dc
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
36 lines (35 loc) • 1.11 kB
TypeScript
/**
* @license
* Copyright (c) 2021 Handsoncode. All rights reserved.
*/
import { ProcedureAst } from '../../parser';
import { InterpreterState } from '../InterpreterState';
import { InterpreterValue } from '../InterpreterValue';
import { ArgumentTypes, FunctionPlugin, FunctionPluginTypecheck } from './FunctionPlugin';
export declare class RandomPlugin extends FunctionPlugin implements FunctionPluginTypecheck<RandomPlugin> {
static implementedFunctions: {
RAND: {
method: string;
parameters: never[];
isVolatile: boolean;
};
RANDBETWEEN: {
method: string;
parameters: {
argumentType: ArgumentTypes;
}[];
isVolatile: boolean;
};
};
/**
* Corresponds to RAND()
*
* Returns a pseudo-random floating-point random number
* in the range [0,1).
*
* @param ast
* @param state
*/
rand(ast: ProcedureAst, state: InterpreterState): InterpreterValue;
randbetween(ast: ProcedureAst, state: InterpreterState): InterpreterValue;
}