Searched refs:basicType (Results 1 – 2 of 2) sorted by relevance
35 #define RENDER_BASIC_PARAM_TO_STRING(basicType) (std::string(#basicType "[") + std::to_string(basic… argument
3220 type basicType = string | number | bigint | boolean | symbol | undefined | object | null;3221 const isString = (val: basicType): boolean => typeof val === 'string';3222 const isNumber = (val: basicType): boolean => typeof val === 'number';3223 const isBigint = (val: basicType): boolean => typeof val === 'bigint';3224 const isBoolean = (val: basicType): boolean => typeof val === 'boolean';3225 const isSymbol = (val: basicType): boolean => typeof val === 'symbol';3226 const isUndefined = (val: basicType): boolean => typeof val === 'undefined';3227 const isObject = (val: basicType): boolean => typeof val === 'object';3228 const isFunction = (val: basicType): boolean => typeof val === 'function';