time-to-botec

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

repl.txt (393B)


      1 
      2 {{alias}}( val )
      3     Determines the name of a value's constructor.
      4 
      5     Parameters
      6     ----------
      7     val: any
      8         Input value.
      9 
     10     Returns
     11     -------
     12     out: string
     13         Name of a value's constructor.
     14 
     15     Examples
     16     --------
     17     > var v = {{alias}}( 'a' )
     18     'String'
     19     > v = {{alias}}( {} )
     20     'Object'
     21     > v = {{alias}}( true )
     22     'Boolean'
     23 
     24     See Also
     25     --------
     26