summaryrefslogtreecommitdiff
path: root/vendor/github.com/cornelk/hashmap/defines.go
blob: 75f0e9eb30c9cee0d4bdc5444f76a3cdd808a6b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package hashmap

// defaultSize is the default size for a map.
const defaultSize = 8

// maxFillRate is the maximum fill rate for the slice before a resize will happen.
const maxFillRate = 50

// support all numeric and string types and aliases of those.
type hashable interface {
	~int | ~int8 | ~int16 | ~int32 | ~int64 | ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | ~float32 | ~float64 | ~string
}