Base utilities for unsigned 16-bit integers.
var ns = require( '@stdlib/number/uint16/base' );Base utilities for unsigned 16-bit integers.
var o = ns;
// returns {...}add( x, y ): compute the sum of two unsigned 16-bit integers.fromBinaryStringUint16( bstr ): create an unsigned 16-bit integer from a literal bit representation.identity( x ): evaluate the identity function of an unsigned 16-bit integer.mul( x, y ): multiply two unsigned 16-bit integers.sub( x, y ): subtract two unsigned 16-bit integers.toBinaryStringUint16( x ): return a string giving the literal bit representation of an unsigned 16-bit integer.
var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/number/uint16/base' );
console.log( objectKeys( ns ) );