diff --git a/build/StarcoinFramework/bytecode_modules/Compare.mv b/build/StarcoinFramework/bytecode_modules/Compare.mv index cb60f4b6..670997b1 100644 Binary files a/build/StarcoinFramework/bytecode_modules/Compare.mv and b/build/StarcoinFramework/bytecode_modules/Compare.mv differ diff --git a/build/StarcoinFramework/docs/Compare.md b/build/StarcoinFramework/docs/Compare.md index a2f8b58a..006370d0 100644 --- a/build/StarcoinFramework/docs/Compare.md +++ b/build/StarcoinFramework/docs/Compare.md @@ -10,9 +10,6 @@ - [Function `cmp_bytes`](#0x1_Compare_cmp_bytes) - [Function `cmp_u8`](#0x1_Compare_cmp_u8) - [Function `cmp_u64`](#0x1_Compare_cmp_u64) -- [Function `is_equal`](#0x1_Compare_is_equal) -- [Function `is_less_than`](#0x1_Compare_is_less_than) -- [Function `is_greater_than`](#0x1_Compare_is_greater_than) - [Module Specification](#@Module_Specification_1) @@ -253,114 +250,6 @@ Keep this in mind when using this function to compare addresses. - - - - -## Function `is_equal` - - - -
public fun is_equal(result: u8): bool
-
-
-
-
-public fun is_equal(result: u8): bool {
- result == EQUAL
-}
-
-
-
-
-aborts_if false;
-
-
-
-
-public fun is_less_than(result: u8): bool
-
-
-
-
-public fun is_less_than(result: u8): bool {
- result == LESS_THAN
-}
-
-
-
-
-aborts_if false;
-
-
-
-
-public fun is_greater_than(result: u8): bool
-
-
-
-
-public fun is_greater_than(result: u8): bool {
- result == GREATER_THAN
-}
-
-
-
-
-aborts_if false;
-
-
-
-