update according to changes in #288
This commit is contained in:
24
docs/source/math.rst
Normal file
24
docs/source/math.rst
Normal file
@ -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.
|
||||
Reference in New Issue
Block a user