Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 577 Bytes

assertGe.md

File metadata and controls

30 lines (20 loc) · 577 Bytes

assertGe

Signature

function assertGe(uint256 left, uint256 right) internal;
function assertGe(uint256 left, uint256 right, string memory err) internal;
function assertGe(int256 left, int256 right) internal;
function assertGe(int256 left, int256 right, string memory err) internal;

Description

Asserts left is greater than or equal to right.

Optionally includes an error message in the revert string.

SEE ALSO