time-to-botec

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

repl.txt (648B)


      1 
      2 {{alias}}( ...pt )
      3     Creates a string from a sequence of Unicode code points.
      4 
      5     In addition to multiple arguments, the function also supports providing an
      6     array-like object as a single argument containing a sequence of Unicode code
      7     points.
      8 
      9     Parameters
     10     ----------
     11     pt: ...integer
     12         Sequence of Unicode code points.
     13 
     14     Returns
     15     -------
     16     out: string
     17         Output string.
     18 
     19     Examples
     20     --------
     21     > var out = {{alias}}( 9731 )
     22     '☃'
     23     > out = {{alias}}( [ 9731 ] )
     24     '☃'
     25     > out = {{alias}}( 97, 98, 99 )
     26     'abc'
     27     > out = {{alias}}( [ 97, 98, 99 ] )
     28     'abc'
     29 
     30     See Also
     31     --------
     32