Variable StdTypeConst

StdType: Readonly<{
    isObject: any;
    parseFloat: FnValue;
    parseInt: FnValue;
    array(...vals): AsyncValue[];
    boolean(a): boolean;
    concat(val, ...vals): AsyncValue;
    entries(iterable): [string | number, AsyncValue][];
    isArray(val): boolean;
    isBoolean(val): boolean;
    isEmpty(iterable): boolean;
    isFinite(val): boolean;
    isFunction(arg): arg is FnValue;
    isMacro(val): boolean;
    isNaN(val): boolean;
    isNull(val): boolean;
    isNumber(arg): arg is number;
    isString(arg): arg is string;
    keys(iterable): (string | number)[];
    length(iterable): number;
    map(this, fn, val): AsyncValue;
    object(...entries): ObjValue;
    slice(val, start, end): AsyncValue;
    string(val): string;
    values(iterable): AsyncValue[];
}> = ...

Standard type conversion bindings.

Type declaration

Generated using TypeDoc