cast/types.go

12 lines
128 B
Go
Raw Normal View History

2019-03-19 18:04:41 +08:00
package cast
type (
2019-03-19 20:06:03 +08:00
float64er interface {
2019-03-19 18:04:41 +08:00
Float64() (float64, error)
}
2019-03-19 20:06:03 +08:00
int64er interface {
2019-03-19 18:04:41 +08:00
Int64() (int64, error)
}
)