Skip to content

Latest commit

 

History

History

uint8-to-binary-string

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Bits

Return a string giving the literal bit representation of an unsigned 8-bit integer.

Usage

var bits = require( '@stdlib/math/base/utils/uint8-to-binary-string' );

bits( x )

Returns a string giving the literal bit representation of an unsigned 8-bit integer.

var a = new Uint8Array( [ 1, 4, 9 ] );

var str = bits( a[0] );
// returns '00000001'

str = bits( a[1] );
// returns '00000100'

str = bits( a[2] );
// returns '00001001'

Notes

Examples

var MAX_UINT8 = require( '@stdlib/math/constants/uint8-max' );
var bits = require( '@stdlib/math/base/utils/uint8-to-binary-string' );

var x;
var y;
var b;
var i;

x = new Uint8Array( MAX_UINT8+1 );
for ( i = 0; i < x.length; i++ ) {
	x[ i ] = i;
}

// Convert unsigned 8-bit integers to literal bit representations...
for ( i = 0; i < x.length; i++ ) {
	b = bits( x[i] );
	y = parseInt( b, 2 );
	console.log( 'x: %d, b: %s, y: %d', x[i], b, y );
}