Add uint64 to float64 cast option

This commit is contained in:
Michael Schwarz 2024-03-26 13:50:38 +01:00
parent f496db4905
commit ad345cd633

View File

@ -49,6 +49,8 @@ func intToFloat64(input interface{}) (float64, error) {
return float64(value), nil
case int64:
return float64(value), nil
case uint64:
return float64(value), nil
}
return 0, errors.New("cannot cast value to float64")
}