time-to-botec

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

repl.txt (377B)


      1 
      2 {{alias}}( a, b )
      3     Performs C-like multiplication of two unsigned 32-bit integers.
      4 
      5     Parameters
      6     ----------
      7     a: integer
      8         Unsigned 32-bit integer.
      9 
     10     b: integer
     11         Unsigned 32-bit integer.
     12 
     13     Returns
     14     -------
     15     out: integer
     16         Product.
     17 
     18     Examples
     19     --------
     20     > var v = {{alias}}( 10>>>0, 4>>>0 )
     21     40
     22 
     23     See Also
     24     --------
     25