time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

repl.txt (402B)


      1 
      2 {{alias}}( x )
      3     Tests if a 32-bit integer is odd.
      4 
      5     Parameters
      6     ----------
      7     x: integer
      8         Value to test.
      9 
     10     Returns
     11     -------
     12     bool: boolean
     13         Boolean indicating whether the value is an odd number.
     14 
     15     Examples
     16     --------
     17     > var bool = {{alias}}( 5 )
     18     true
     19     > bool = {{alias}}( -2 )
     20     false
     21     > bool = {{alias}}( 0 )
     22     false
     23 
     24     See Also
     25     --------
     26