Renaming receiver name to be consistent.
This commit is contained in:
parent
2d951cee05
commit
9fe68dbe77
16
intervals.go
16
intervals.go
@ -94,18 +94,18 @@ func NewIntervals(minLow, maxHigh int, lowInclusive, highInclusive, selfAdjustMi
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (intvls *intervals) IsLowInclusive() bool {
|
func (itvls *intervals) IsLowInclusive() bool {
|
||||||
return intvls.LowInclusive
|
return itvls.LowInclusive
|
||||||
}
|
}
|
||||||
|
|
||||||
func (intvls *intervals) IsHighInclusive() bool {
|
func (itvls *intervals) IsHighInclusive() bool {
|
||||||
return intvls.HighInclusive
|
return itvls.HighInclusive
|
||||||
}
|
}
|
||||||
|
|
||||||
func (intvls *intervals) GetMinLow() int {
|
func (itvls *intervals) GetMinLow() int {
|
||||||
return intvls.MinLow
|
return itvls.MinLow
|
||||||
}
|
}
|
||||||
|
|
||||||
func (intvls *intervals) GetMaxHigh() int {
|
func (itvls *intervals) GetMaxHigh() int {
|
||||||
return intvls.MaxHigh
|
return itvls.MaxHigh
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user