Comparing version 0.0.32 to 0.0.33
@@ -295,3 +295,3 @@ import { check } from "./system"; | ||
@inline @operator('!=') | ||
static ne(a: Asset, b: Asset): bool { | ||
static neq(a: Asset, b: Asset): bool { | ||
check(a.symbol.value == b.symbol.value, "symbol not the same"); | ||
@@ -396,3 +396,3 @@ return a.amount != b.amount; | ||
@inline @operator('!=') | ||
static ne(a: ExtendedAsset, b: ExtendedAsset): bool { | ||
static neq(a: ExtendedAsset, b: ExtendedAsset): bool { | ||
return !(a.quantity == b.quantity && a.contract == b.contract); | ||
@@ -399,0 +399,0 @@ } |
@@ -36,5 +36,5 @@ import { Packer, Encoder } from "./serializer" | ||
@inline @operator('!=') | ||
static ne(a: Float128, b: Float128): bool { | ||
static neq(a: Float128, b: Float128): bool { | ||
return !(a.data[0] == b.data[0] && a.data[1] == b.data[1]); | ||
} | ||
} |
{ | ||
"name": "as-chain", | ||
"version": "0.0.32", | ||
"version": "0.0.33", | ||
"description": "chain module for assemblyscript", | ||
@@ -5,0 +5,0 @@ "main": "js/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1311523