int  min(int value1, int value2, ...)
                    
                    
                
            
                
                    
                    
                    
                        float  min(float value1, float value2, ...)
                    
                    
                
            
Returns the minimum of the arguments.
                
                    
                    
                    
                        <vector> min(<vector>value1, <vector>value2, ...)
                    
                    
                
            
Returns a vector where each component is the minimum of the corresponding components in the arguments.
                
                    
                    
                    
                        <type> min(<type>values[])
                    
                    
                
            
Returns the minimum value in the array.
                
                    
                    
                    
                        float  min(<vector>v)
                    
                    
                
            
Returns the minimum of the vector’s components.
                
                    
                    
                    
                        <type> min(<type>value)
                    
                    
                
            
Returns the argument.
| See also | |
| math | 
                
                    
                                 |