commit
322a9598ab
@ -0,0 +1,24 @@ |
||||
Math |
||||
============================================= |
||||
|
||||
Provides assorted low-level math operations. |
||||
|
||||
max64(uint64 a, uint64 b) internal constant returns (uint64) |
||||
""""""""""""""""""""""""""""""""""""""""""""""""" |
||||
|
||||
Returns the largest of two uint64 numbers. |
||||
|
||||
min64(uint64 a, uint64 b) internal constant returns (uint64) |
||||
""""""""""""""""""""""""""""""""""""""""""""""""" |
||||
|
||||
Returns the smallest of two uint64 numbers. |
||||
|
||||
max64(uint256 a, uint256 b) internal constant returns (uint256) |
||||
""""""""""""""""""""""""""""""""""""""""""""""""" |
||||
|
||||
Returns the largest of two uint256 numbers. |
||||
|
||||
min64(uint256 a, uint256 b) internal constant returns (uint256) |
||||
""""""""""""""""""""""""""""""""""""""""""""""""" |
||||
|
||||
Returns the smallest of two uint256 numbers. |
Loading…
Reference in new issue