time-to-botec

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

repl.txt (562B)


      1 
      2 {{alias}}( [description] )
      3     Returns a symbol.
      4 
      5     Unlike conventional constructors, this function does **not** support the
      6     `new` keyword.
      7 
      8     This function is only supported in environments which support symbols.
      9 
     10     Parameters
     11     ----------
     12     description: string (optional)
     13         Symbol description which can be used for debugging but not to access the
     14         symbol itself.
     15 
     16     Returns
     17     -------
     18     out: symbol
     19         Symbol.
     20 
     21     Examples
     22     --------
     23     > var s = ( {{alias}} ) ? {{alias}}( 'beep' ) : null
     24 
     25     See Also
     26     --------
     27