¡@

Home 

c++ Programming Glossary: klowerbound

Clean, efficient algorithm for wrapping integers in C++

http://stackoverflow.com/questions/707370/clean-efficient-algorithm-for-wrapping-integers-in-c

for wrapping integers in C Returns a number between kLowerBound and kUpperBound e.g. Wrap 1 0 4 Returns 4 e.g. Wrap 5 0 4 Returns.. e.g. Wrap 5 0 4 Returns 0 int Wrap int const kX int const kLowerBound int const kUpperBound Suggest an implementation c algorithm.. a and b are both non negative. int Wrap int kX int const kLowerBound int const kUpperBound int range_size kUpperBound kLowerBound..