|
||
---|---|---|
.. | ||
docs/types | ||
from-binary-string | ||
lib | ||
to-binary-string | ||
package.json | ||
README.md |
Uint16
Base utilities for unsigned 16-bit integers.
Usage
var ns = require( '@stdlib/number/uint16/base' );
ns
Base utilities for unsigned 16-bit integers.
var o = ns;
// returns {...}
fromBinaryStringUint16( bstr )
: create an unsigned 16-bit integer from a literal bit representation.toBinaryStringUint16( x )
: return a string giving the literal bit representation of an unsigned 16-bit integer.
Examples
var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/number/uint16/base' );
console.log( objectKeys( ns ) );