0x1::Compare
cmp_bcs_bytes
cmp_bytes
cmp_u64
is_equal
is_less_than
is_greater_than
const EQUAL: u8 = 0;
const GREATER_THAN: u8 = 2;
const LESS_THAN: u8 = 1;
cmp_bcs_bytes
Compare v1
and v2
using
(1) byte-by-byte comparison from right to left until we reach the end of the shorter vector,
then
(2) vector length to break ties.
Returns either EQUAL
(0u8), LESS_THAN
(1u8), or GREATER_THAN
(2u8).
This function is designed to compare BCS (Starcoin Canonical Serialization)-encoded values
(i.e., vectors produced by BCS::to_bytes
). A typical client will call
Compare::cmp_bcs_bytes(BCS::to_bytes(&t1), BCS::to_bytes(&t2))
. The comparison provides the
following guarantees w.r.t the original values t1 and t2:
cmp_bcs_bytes(bcs_ext(t1), bcs_ext(t2)) == LESS_THAN
iff cmp_bcs_bytes(t2, t1) == GREATER_THAN
Compare::cmp<T>(t1, t2) == EQUAL
iff t1 == t2
and (similarly)
Compare::cmp<T>(t1, t2) != EQUAL
iff t1 != t2
, where ==
and !=
denote the Move
bytecode operations for polymorphic equality.T
with <
and >
comparison operators exposed in Move bytecode
(u8
, u64
, u128
), we have
compare_bcs_bytes(bcs_ext(t1), bcs_ext(t2)) == LESS_THAN
iff t1 < t2
and (similarly)
compare_bcs_bytes(bcs_ext(t1), bcs_ext(t2)) == LESS_THAN
iff t1 > t2
.
For all other types, the order is whatever the BCS encoding of the type and the comparison
strategy above gives you. One case where the order might be surprising is the address
type.
CoreAddresses are 16 byte hex values that BCS encodes with the identity function. The right to
left, byte-by-byte comparison means that (for example)
compare_bcs_bytes(bcs_ext(0x01), bcs_ext(0x10)) == LESS_THAN
(as you’d expect), but
compare_bcs_bytes(bcs_ext(0x100), bcs_ext(0x001)) == LESS_THAN
(as you probably wouldn’t expect).
Keep this in mind when using this function to compare addresses.public fun cmp_bcs_bytes(v1: &vector<u8>, v2: &vector<u8>): u8
public fun cmp_bcs_bytes(v1: &vector<u8>, v2: &vector<u8>): u8 {
let i1 = Vector::length(v1);
let i2 = Vector::length(v2);
let len_cmp = cmp_u64(i1, i2);
// BCS uses little endian encoding for all integer types, so we choose to compare from left
// to right. Going right to left would make the behavior of Compare.cmp diverge from the
// bytecode operators < and > on integer values (which would be confusing).
while (i1 > 0 && i2 > 0) {
i1 = i1 - 1;
i2 = i2 - 1;
let v1 = *Vector::borrow(v1, i1);
let v2 = *Vector::borrow(v2, i2);
let elem_cmp = if (v1 == v2) EQUAL
else if (v1 < v2) LESS_THAN
else GREATER_THAN;
if (elem_cmp != 0) return elem_cmp
// else, compare next element
};
// all compared elements equal; use length comparison to break the tie
len_cmp
}
pragma verify = false;
cmp_bytes
public fun cmp_bytes(v1: &vector<u8>, v2: &vector<u8>): u8
public fun cmp_bytes(v1: &vector<u8>, v2: &vector<u8>): u8 {
let l1 = Vector::length(v1);
let l2 = Vector::length(v2);
let len_cmp = cmp_u64(l1, l2);
let i = 0;
while (i < l1 && i < l2) {
let v1 = *Vector::borrow(v1, i);
let v2 = *Vector::borrow(v2, i);
let elem_cmp = if (v1 == v2) EQUAL
else if (v1 < v2) LESS_THAN
else GREATER_THAN;
if (elem_cmp != 0) {
return elem_cmp
};
// else, compare next element
i = i + 1;
};
// all compared elements equal; use length comparison to break the tie
len_cmp
}
pragma verify = false;
cmp_u64
fun cmp_u64(i1: u64, i2: u64): u8
fun cmp_u64(i1: u64, i2: u64): u8 {
if (i1 == i2) EQUAL
else if (i1 < i2) LESS_THAN
else GREATER_THAN
}
aborts_if false;
is_equal
public fun is_equal(result: u8): bool
aborts_if false;
is_less_than
public fun is_less_than(result: u8): bool
public fun is_less_than(result: u8): bool {
result == LESS_THAN
}
aborts_if false;
is_greater_than
public fun is_greater_than(result: u8): bool
public fun is_greater_than(result: u8): bool {
result == GREATER_THAN
}
aborts_if false;
pragma verify;
pragma aborts_if_is_strict;