The <limit> block limits a value so that it remains between a minimum and a maximum.
•« H » : is the upper limit. The default value is 1 (int type)
•« in » : is the main input. The default value is 0 (int type)
•« L » : is the lower limit. The default value is -1 (int type)
•« in > H» : returns “true” if the “in” input is limited by the maximum value (“H”)
•«out» : corresponds to the image of the limited “in” input
•« in < L » : returns “true” if the “in” input is limited by the minimum value (“L”)
The three inputs must be of type: int or float.