time-to-botec

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

repl.txt (444B)


      1 
      2 {{alias}}( value )
      3     Tests if a value is a string having an uppercase first character.
      4 
      5     Parameters
      6     ----------
      7     value: any
      8         Value to test.
      9 
     10     Returns
     11     -------
     12     bool: boolean
     13         Boolean indicating whether value is a string with an uppercase first
     14         character.
     15 
     16     Examples
     17     --------
     18     > var bool = {{alias}}( 'Hello' )
     19     true
     20     > bool = {{alias}}( 'world' )
     21     false
     22 
     23     See Also
     24     --------
     25