blob: 3dfe0b3f6c41a8491b253e9e58e0e989c23044be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package ds
import (
"golang.org/x/exp/constraints"
)
type Integer interface {
constraints.Integer
}
type Number interface {
constraints.Integer | constraints.Float
}
|