AsFloat64 tells the compiler to expect a float64 result.
()
| 103 | |
| 104 | // AsFloat64 tells the compiler to expect a float64 result. |
| 105 | func AsFloat64() Option { |
| 106 | return func(c *conf.Config) { |
| 107 | c.Expect = reflect.Float64 |
| 108 | c.ExpectAny = true |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | // DisableIfOperator disables the `if ... else ...` operator syntax so a custom |
| 113 | // function named `if(...)` can be used without conflicts. |
no outgoing calls
searching dependent graphs…