copapy.min# copapy.min(x, y)# Overloads: x (value[U]), y (U | value[U]) → value[U] x (U | value[U]), y (value[U]) → value[U] x (U), y (U) → U Minimum function to get the smaller of two values. Parameters: x (TypeVar(U, int, float) | value[TypeVar(U, int, float)]) – First value y (TypeVar(U, int, float) | value[TypeVar(U, int, float)]) – Second value Returns: Minimum of x and y