diff options
| author | Paul Buetow <paul@buetow.org> | 2023-04-09 14:37:30 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2023-04-09 14:37:30 +0300 |
| commit | 198ceb7a3c1a6cb4416e861320c4a7c8033f2deb (patch) | |
| tree | a8e5b3aef4418cb9f44143e42dcca7de49fd4027 /ds/types.go | |
| parent | 7621e57eafb7b9d818c15763b52efb92d3dfaaaa (diff) | |
move types to types.go
Diffstat (limited to 'ds/types.go')
| -rw-r--r-- | ds/types.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ds/types.go b/ds/types.go new file mode 100644 index 0000000..3dfe0b3 --- /dev/null +++ b/ds/types.go @@ -0,0 +1,13 @@ +package ds + +import ( + "golang.org/x/exp/constraints" +) + +type Integer interface { + constraints.Integer +} + +type Number interface { + constraints.Integer | constraints.Float +} |
