Renamed to IsValueWithinLimits

This commit is contained in:
2024-02-12 02:02:30 +01:00
parent bb8959160a
commit 171b057d58
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ public readonly struct IntegerRange
this.Max = max;
}
public bool ValueWithinLimits(int value)
public bool IsValueWithinLimits(int value)
{
return value >= this.Min && value <= this.Max;
}