summaryrefslogtreecommitdiff
path: root/range.go
blob: e9ca1e11595ded65c20adc51d72e843e5f62663a (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
}