Const
Converter for boolean values.
boolean
A boolean is represented as uint8 where true is 1 and false is 0.
uint8
true
1
false
0
Example:
const buf = ccfapp.bool.encode(true); // ArrayBuffer of size 1const val = ccfapp.bool.decode(buf); // boolean Copy
const buf = ccfapp.bool.encode(true); // ArrayBuffer of size 1const val = ccfapp.bool.decode(buf); // boolean
Converter for
boolean
values.A
boolean
is represented asuint8
wheretrue
is1
andfalse
is0
.Example: