time-to-botec

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

repl.txt (360B)


      1 
      2 {{alias}}( str )
      3     Converts a string to camel case.
      4 
      5     Parameters
      6     ----------
      7     str: string
      8         Input string.
      9 
     10     Returns
     11     -------
     12     out: string
     13         Camel-cased string.
     14 
     15     Examples
     16     --------
     17     > var out = {{alias}}( 'Hello World!' )
     18     'helloWorld'
     19     > out = {{alias}}( 'beep boop' )
     20     'beepBoop'
     21 
     22     See Also
     23     --------