summaryrefslogtreecommitdiff
path: root/range.go
blob: b110cb8b2fbbb31609c36e2fcef223d38e95b48d (plain)
1
2
3
4
5
6
7
8
9
10
package widget

// Range(1, 10) includes the values 1 and 10
// almost all toolkits use integers so there doesn't
// seem to be a good idea to use 'type any' here as it
// just makes things more complicated for no good reason
type RangeType struct {
	Low int
	High int
}