time-to-botec

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

repl.txt (666B)


      1 
      2 {{alias}}( [dtype] )
      3     Returns a list of array data types to which a provided array data type can
      4     be safely cast or cast within the same "kind".
      5 
      6     If not provided an array data type, the function returns a casting table.
      7 
      8     If provided an unrecognized array data type, the function returns `null`.
      9 
     10     Parameters
     11     ----------
     12     dtype: string (optional)
     13         Array data type.
     14 
     15     Returns
     16     -------
     17     out: Object|Array<string>|null
     18         Array data types to which a data type can be safely cast or cast within
     19         the same "kind".
     20 
     21     Examples
     22     --------
     23     > var out = {{alias}}( 'float32' )
     24     <Array>
     25 
     26     See Also
     27     --------
     28