time-to-botec

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

repl.txt (466B)


      1 
      2 {{alias}}( value )
      3     Tests if a value is a numeric array.
      4 
      5     Parameters
      6     ----------
      7     value: any
      8         Value to test.
      9 
     10     Returns
     11     -------
     12     bool: boolean
     13         Boolean indicating if a value is a numeric array.
     14 
     15     Examples
     16     --------
     17     > var bool = {{alias}}( new {{alias:@stdlib/array/int8}}( 10 ) )
     18     true
     19     > bool = {{alias}}( [ 1, 2, 3 ] )
     20     true
     21     > bool = {{alias}}( [ '1', '2', '3' ] )
     22     false
     23 
     24     See Also
     25     --------
     26 
     27