Strided
Strided array functionality.
Usage
var ns = require( '@stdlib/strided' );
ns
Namespace containing strided array functionality.
var o = ns;
// returns {...}
The namespace contains the following:
- base: base strided.
- dispatch( fcns, types, data, nargs, nin, nout ): create a strided array function interface which performs multiple dispatch.
- dtypes(): list of strided array data types.
Examples
var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/strided' );
console.log( objectKeys( ns ) );