@stdlib/blas-base-assert-is-operation-side
v0.0.2
Published
Test if an input value is a BLAS operation side.
Downloads
5
Readme
isOperationSide
Test if an input value is a BLAS operation side.
Installation
npm install @stdlib/blas-base-assert-is-operation-side
Usage
var isOperationSide = require( '@stdlib/blas-base-assert-is-operation-side' );
isOperationSide( value )
Tests if an input value
is a BLAS operation side.
var bool = isOperationSide( 'right' );
// returns true
bool = isOperationSide( 'left' );
// returns true
Examples
var isOperationSide = require( '@stdlib/blas-base-assert-is-operation-side' );
var bool = isOperationSide( 'right' );
// returns true
bool = isOperationSide( 'left' );
// returns true
bool = isOperationSide( '' );
// returns false
bool = isOperationSide( 'foo' );
// returns false
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.