vote up 5 vote down star

I have a method that receives two range endpoints - start of range and end of range and an integer.

It checks to see if the integer falls between the two end points and returns either the integer or the corresponding end point if the integer falls outside the boundary.

Example 1:

  • RangeStart = 0; RangeEnd = 10; Value = 5; Returns 5

Example 2:

  • RangeStart = 0; RangeEnd = 10; Value = -4; Returns 0

Example 3:

  • RangeStart = 0; RangeEnd = 10; Value = 23; Returns 10

Question: What should I call a method that does that? I had called it IntWithinRange, but I don't think I like that.

Any ideas?

flag

8 Answers

vote up 10 vote down check

How about ConstrictToRange / LimitToRange / ConfineToRange? Something of this form would be seem to convey the meaning quite succinctly.

link|flag
I like that, it's simple and it's fairly obvious – BenAlabaster Jul 16 at 21:26
I like LimitToRange best – Chris Simpson Jul 16 at 21:27
2  
Confine is another good synonym, as another poster points out. They're all equally good in my view. – Noldorin Jul 16 at 21:36
I ended up picking ConfineToRange and making it an extension of integer so that I can do things like MyValue.ConfineToRange(StartRange, EndRange); Thanks for the inspiration. – BenAlabaster Jul 16 at 22:03
You're welcome. And yeah, implementing it as an extension method is a good idea I think. – Noldorin Jul 16 at 22:18
vote up 0 vote down

BoundedValue() or GetBoundedValue()

Some of the other names sound to me like you're modifying something.

link|flag
vote up 1 vote down

A short one: Squeeze().

link|flag
vote up 1 vote down

normalize

link|flag
In digital music this kind of process is called Quantizing - so I think I like Normalize... – BenAlabaster Jul 16 at 21:25
vote up 6 vote down
confine_to(start, end, value)
link|flag
vote up -2 vote down

CheckRange seems sufficient to me

link|flag
vote up 9 vote down

I've seen it called Clamp().

And that's what M$ calls it.

http://msdn.microsoft.com/en-us/library/microsoft.xna.framework.mathhelper.clamp.aspx

link|flag
I guess if that's what Microsoft calls it, it must be right :P – BenAlabaster Jul 16 at 21:29
Clamp is what i thought of too! – Blindy Jul 16 at 21:37
Clamp is simple, but doesn't have as obvious a meaning as the names I suggested IMO. – Noldorin Jul 16 at 21:57
I believe that's also the mathematical term as well. – Jeremy Powell Jul 16 at 22:06
Names are weird. Imagine if you had to name sin() and cos() functions. Some might suggest OppositeOverHypotenuse()... – Ray Jul 16 at 22:08
show 2 more comments
vote up 1 vote down

GetBoundedValue?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.