time-to-botec

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

repl.txt (544B)


      1 
      2 {{alias}}( value )
      3     Tests if an input value is a supported ndarray index mode.
      4 
      5     Parameters
      6     ----------
      7     value: any
      8         Value to test.
      9 
     10     Returns
     11     -------
     12     bool: boolean
     13         Boolean indicating if an input value is a supported ndarray index mode.
     14 
     15     Examples
     16     --------
     17     > var bool = {{alias}}( 'throw' )
     18     true
     19     > bool = {{alias}}( 'clamp' )
     20     true
     21     > bool = {{alias}}( 'wrap' )
     22     true
     23     > bool = {{alias}}( '' )
     24     false
     25     > bool = {{alias}}( 'beep' )
     26     false
     27 
     28     See Also
     29     --------
     30