|
@@ -142,6 +142,10 @@ namespace Invercargill {
|
|
|
values.iterate(i => push_uint64(i));
|
|
|
}
|
|
|
|
|
|
+ public bool equals(Enumerable<uint8> other) {
|
|
|
+ return this == other || matches(other, (a, b) => a == b);
|
|
|
+ }
|
|
|
+
|
|
|
public void push_int32(int32 value) {
|
|
|
var chunk = new uint8[sizeof(int32)];
|
|
|
int32 val;
|