Addition operators
Declared in <arith_uint256.h>
Concatenate two bilingual strings.
bilingual_str
operator+(
bilingual_str lhs,
bilingual_str const& rhs);
» more...
Returns an iterator advanced by n elements.
const_iterator
operator+(
size_type n,
const_iterator x);
» more...
Returns an iterator advanced by n elements.
iterator
operator+(
size_type n,
iterator x);
» more...
Sum fee and size.
FeeFrac
operator+(
FeeFrac const& a,
FeeFrac const& b) noexcept;
» more...
Returns the sum of two big integers.
base_uint
operator+(
base_uint const& a,
base_uint const& b);
» more...
Returns the sum of two big integers.
base_uint<256>
operator+(
base_uint<256> const& a,
base_uint<256> const& b);
» more...
n elements.a and b.| Name | Description |
|---|---|
| lhs | The left operand, taken by value and used as the result. |
| rhs | The bilingual string appended to lhs. |
| n | The number of elements to advance by. |
| x | The iterator to advance. |
| a | The first operand. |
| b | The second operand. |