CBytes32

Git Source

Functions

toUint256

function toUint256(bytes32 val) internal pure returns (uint256);

toAddress

function toAddress(bytes32 val) internal pure returns (address);

toBool

function toBool(bytes32 val) internal pure returns (bool converted);

k

This method should be used to convert a bytes32 to a uint256 when used as a key in a mapping.

function k(bytes32 val) internal pure returns (uint256);

v

This method should be used to convert a bytes32 to a uint256 when used as a value in a mapping.

function v(bytes32 val) internal pure returns (uint256);