devxlogo

Create an Easy to Use Clamp Template for Constraining Values

Create an Easy to Use Clamp Template for Constraining Values

Often, in code, you find yourself constraining values doing something like:

if(val < MIN)  val = MIN;else if(val > MAX)  val = MAX;

This simple template function will do that for you. The template uses two types, so that the in value doesn’t have to be the same type as the constraints. As long as a comparison operator is defined between them, it will still work.

templateT clamp(T in, U low, U high){    if(in <= low)        return low;    else if(in >= high)        return high;    else        return in;}

If you are trying to restrain a value in just one direction, it is easiest to use std::min(a,b) and std::max(a,b).

Usage:

double degrees;cin >> degrees;degrees = clamp(degrees,0,360);     //restrain degrees to an appropriate valueval = std::max(val,0);     //make sure value doesn't drop below 0people_to_invite = std::min(people_not_invited,seats_left);  //ensure value doesn't get above seats_left
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist