Fixed size array of bytes sorted lexicographically.
Classes
Type | Name |
---|---|
class | eosio::fixed_bytes Fixed size array of bytes sorted lexicographically. |
Functions
Functions Documentation
function operator==
template<size_t Size>
bool eosio::operator==(
const fixed_bytes< Size > & c1,
const fixed_bytes< Size > & c2
)
Compares two fixed_bytes variables c1 and c2.
Lexicographically compares two fixed_bytes variables c1 and c2
Parameters:
- c1 - First fixed_bytes object to compare
- c2 - Second fixed_bytes object to compare
Returns:
if c1 == c2, return true, otherwise false
function operator!=
template<size_t Size>
bool eosio::operator!=(
const fixed_bytes< Size > & c1,
const fixed_bytes< Size > & c2
)
Compares two fixed_bytes variables c1 and c2.
Lexicographically compares two fixed_bytes variables c1 and c2
Parameters:
- c1 - First fixed_bytes object to compare
- c2 - Second fixed_bytes object to compare
Returns:
if c1 != c2, return true, otherwise false
function operator>
template<size_t Size>
bool eosio::operator>(
const fixed_bytes< Size > & c1,
const fixed_bytes< Size > & c2
)
Compares two fixed_bytes variables c1 and c2.
Lexicographically compares two fixed_bytes variables c1 and c2
Parameters:
- c1 - First fixed_bytes object to compare
- c2 - Second fixed_bytes object to compare
Returns:
if c1 > c2, return true, otherwise false
function operator<
template<size_t Size>
bool eosio::operator<(
const fixed_bytes< Size > & c1,
const fixed_bytes< Size > & c2
)
Compares two fixed_bytes variables c1 and c2.
Lexicographically compares two fixed_bytes variables c1 and c2
Parameters:
- c1 - First fixed_bytes object to compare
- c2 - Second fixed_bytes object to compare
Returns:
if c1 < c2, return true, otherwise false
function operator>=
template<size_t Size>
bool eosio::operator>=(
const fixed_bytes< Size > & c1,
const fixed_bytes< Size > & c2
)
Compares two fixed_bytes variables c1 and c2.
Lexicographically compares two fixed_bytes variables c1 and c2
Parameters:
- c1 - First fixed_bytes object to compare
- c2 - Second fixed_bytes object to compare
Returns:
if c1 >= c2, return true, otherwise false
function operator<=
template<size_t Size>
bool eosio::operator<=(
const fixed_bytes< Size > & c1,
const fixed_bytes< Size > & c2
)
Compares two fixed_bytes variables c1 and c2.
Lexicographically compares two fixed_bytes variables c1 and c2
Parameters:
- c1 - First fixed_bytes object to compare
- c2 - Second fixed_bytes object to compare
Returns:
if c1 <= c2, return true, otherwise false