12 lines
128 B
Go
12 lines
128 B
Go
package cast
|
|
|
|
type (
|
|
float64er interface {
|
|
Float64() (float64, error)
|
|
}
|
|
|
|
int64er interface {
|
|
Int64() (int64, error)
|
|
}
|
|
)
|