_toBool

Git Source

Cast a value to a bool.

Boolean values are encoded as uint8 (1 = true, 0 = false), but Solidity doesn't allow casting between uint8 and bool.

function _toBool(uint8 value) pure returns (bool result);

Parameters

NameTypeDescription
valueuint8The uint8 value to convert.

Returns

NameTypeDescription
resultboolThe boolean value.