a < b
| 
     Group  | 
                
Returns true if a is lesser than b. a and b are interpreted numerically.
Description of Parameters
| 
     Parameter  | 
                
     Description  | 
        
| 
     a  | 
                
     Value.  | 
        
| 
     b  | 
                
     Value.  | 
        
Examples
| 
     Parameter a  | 
                
     Parameter b  | 
                
     Result  | 
        
| 
     1  | 
                
     false  | 
        |
| 
     1  | 
                
     true  | 
        |
| 
     2.5  | 
                
     2  | 
                
     false  | 
        
| 
     1.5  | 
                
     2  | 
                
     true  | 
        
| 
     2  | 
                
     2  | 
                
     false  |