标签: while-loop range modulo bounds clip
这个功能有名字吗?它就像弹性边界的模数。这是一个模10的例子,但两端的'grace'为3:
while n < -3 n += 10; while n => 13 n -= 10; return n;
我经常需要它,但不知道该怎么称呼它。