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