(val super.Value)
| 392 | |
| 393 | func toFloat(val super.Value) float64 { return coerce.ToNumeric[float64](val) } |
| 394 | func toInt(val super.Value) int64 { return coerce.ToNumeric[int64](val) } |
| 395 | func toUint(val super.Value) uint64 { return coerce.ToNumeric[uint64](val) } |
| 396 | |
| 397 | type Add struct { |