in pkg/selector/comparators.go [173:182]
func isSupportedWithRangeInt64(instanceTypeValue *int64, target *IntRangeFilter) bool {
if target == nil {
return true
} else if instanceTypeValue == nil && target.LowerBound == 0 && target.UpperBound == 0 {
return true
} else if instanceTypeValue == nil {
return false
}
return int(*instanceTypeValue) >= target.LowerBound && int(*instanceTypeValue) <= target.UpperBound
}