in pkg/selector/comparators.go [209:218]
func isSupportedWithRangeFloat64(instanceTypeValue *float64, target *Float64RangeFilter) bool {
if target == nil {
return true
} else if instanceTypeValue == nil && target.LowerBound == 0.0 && target.UpperBound == 0.0 {
return true
} else if instanceTypeValue == nil {
return false
}
return float64(*instanceTypeValue) >= target.LowerBound && float64(*instanceTypeValue) <= target.UpperBound
}