toFloat64 converts 64-bit floats
(v interface{})
| 12 | |
| 13 | // toFloat64 converts 64-bit floats |
| 14 | func toFloat64(v interface{}) float64 { |
| 15 | return cast.ToFloat64(v) |
| 16 | } |
| 17 | |
| 18 | func toInt(v interface{}) int { |
| 19 | return cast.ToInt(v) |
no outgoing calls
searching dependent graphs…