What about this use case? ``` fun SomeFloatRange....
# language-proposals
b
What about this use case?
Copy code
fun SomeFloatRange.contains(value: Float, !tolerance: Float): Boolean  //  Label is optional on "value", but required on "tolerance" so it's impossible to think you're passing, for instance, another range of values.


// Usage:

myFloatRange.contains(1.0f, 2.0f)  //  Compile failure: "tolerance" parameter not named