@@ -19,18 +19,19 @@ var builtinDocs = functionDocs{
19
19
"typeof" : "The typeof function returns the type of arg1." ,
20
20
"len" : "The len function returns length of the arg1 expression if arg1 evals to string, array or object, either returns NULL." ,
21
21
"coalesce" : "The coalesce function returns the first non-null argument. NULL is returned if all arguments are null." ,
22
- "random" : "The random function returns a random number between math.MinInt64 and math.MaxInt64." ,
23
22
}
24
23
25
24
var mathDocs = functionDocs {
26
- "abs" : "Returns the absolute value of arg1." ,
27
- "acos" : "Returns the arcosine, in radiant, of arg1." ,
28
- "acosh" : "Returns the inverse hyperbolic cosine of arg1." ,
29
- "asin" : "Returns the arsine, in radiant, of arg1." ,
30
- "asinh" : "Returns the inverse hyperbolic sine of arg1." ,
31
- "atan" : "Returns the arctangent, in radians, of arg1." ,
32
- "atan2" : "Returns the arctangent of arg1/arg2, using the signs of the two to determine the quadrant of the return value." ,
33
- "floor" : "Returns the greatest integer value less than or equal to arg1." ,
25
+ "abs" : "Returns the absolute value of arg1." ,
26
+ "acos" : "Returns the arcosine, in radiant, of arg1." ,
27
+ "acosh" : "Returns the inverse hyperbolic cosine of arg1." ,
28
+ "asin" : "Returns the arsine, in radiant, of arg1." ,
29
+ "asinh" : "Returns the inverse hyperbolic sine of arg1." ,
30
+ "atan" : "Returns the arctangent, in radians, of arg1." ,
31
+ "atan2" : "Returns the arctangent of arg1/arg2, using the signs of the two to determine the quadrant of the return value." ,
32
+ "floor" : "Returns the greatest integer value less than or equal to arg1." ,
33
+ "random" : "The random function returns a random number between math.MinInt64 and math.MaxInt64." ,
34
+ "sqrt" : "The sqrt function returns the square root of arg1." ,
34
35
}
35
36
36
37
var stringsDocs = functionDocs {
0 commit comments