time-to-botec

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

repl.txt (623B)


      1 
      2 {{alias}}( dtype )
      3     Returns the minimum safe integer capable of being represented by a numeric
      4     real type.
      5 
      6     The following numeric real types are supported:
      7 
      8     - float64: double-precision floating-point numbers
      9     - float32: single-precision floating-point numbers
     10     - float16: half-precision floating-point numbers
     11 
     12     Parameters
     13     ----------
     14     dtype: string
     15         Numeric type.
     16 
     17     Returns
     18     -------
     19     out: integer
     20         Minimum safe integer.
     21 
     22     Examples
     23     --------
     24     > var m = {{alias}}( 'float16' )
     25     -2047
     26     > m = {{alias}}( 'float32' )
     27     -16777215
     28 
     29     See Also
     30     --------
     31