time-to-botec

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

repl.txt (357B)


      1 
      2 {{alias}}( str )
      3     Returns the number of grapheme clusters in a string.
      4 
      5     Parameters
      6     ----------
      7     str: string
      8         Input string.
      9 
     10     Returns
     11     -------
     12     out: string
     13         Number of grapheme clusters.
     14 
     15     Examples
     16     --------
     17     > var out = {{alias}}( 'beep' )
     18     4
     19     > out = {{alias}}( '🌷' )
     20     1
     21 
     22     See Also
     23     --------
     24