toBCD

Converts ushort value into BDC format

ushort
toBCD
(
ushort dec
)

Parameters

dec ushort

ushort in decimal format

Return Value

Type: ushort

BCD value

Examples

0.toBCD().shouldEqual(0);
10.toBCD().shouldEqual(0x10);
34.toBCD().shouldEqual(52);
127.toBCD().shouldEqual(0x127);
110.toBCD().shouldEqual(0x110);
9999.toBCD().shouldEqual(0x9999);
9999.toBCD().shouldEqual(39_321);

Meta