time-to-botec

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

repl.txt (342B)


      1 
      2 {{alias}}( str )
      3     Percent-encodes a UTF-16 encoded string according to RFC 3986.
      4 
      5     Parameters
      6     ----------
      7     str: string
      8         UTF-16 encoded string.
      9 
     10     Returns
     11     -------
     12     out: string
     13         Percent-encoded string.
     14 
     15     Examples
     16     --------
     17     > var out = {{alias}}( '☃' )
     18     '%E2%98%83'
     19 
     20     See Also
     21     --------
     22