The <minmax> block simultaneously calculates the smallest and largest values among the two inputs, “a” and “b.”
See the Python documentation for the “min()” and “max()” functions for more details.
•« a » : The default value is 0 (type: int)
•« b » : The default value is 0 (type: int)
•« max » : = max(« a », « b »)
•« min » : = min(« a », « b »)
Both inputs must be of type: int or float.
However, it is possible to use the following types: string, list, or dictionary; in this case, both inputs must be of the same type.