[C#] Update auto-generated files
[ldk-java] / c_sharp / src / org / ldk / structs / BigSize.cs
index 315e1b622d8c58ffabd9c640459fd2a834bc229d..9749cfc7cbc3e1cb621ca1bb80e261924afa25a9 100644 (file)
@@ -7,7 +7,7 @@ namespace org { namespace ldk { namespace structs {
 
 
 /**
- * Lightning TLV uses a custom variable-length integer called BigSize. It is similar to Bitcoin's
+ * Lightning TLV uses a custom variable-length integer called `BigSize`. It is similar to Bitcoin's
  * variable-length integers except that it is serialized in big-endian instead of little-endian.
  * 
  * Like Bitcoin's variable-length integer, it exhibits ambiguity in that certain values can be
@@ -45,5 +45,72 @@ public class BigSize : CommonBase {
                return ret_hu_conv;
        }
 
+       internal long clone_ptr() {
+               long ret = bindings.BigSize_clone_ptr(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       /**
+        * Creates a copy of the BigSize
+        */
+       public BigSize clone() {
+               long ret = bindings.BigSize_clone(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.BigSize ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.BigSize(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Generates a non-cryptographic 64-bit hash of the BigSize.
+        */
+       public long hash() {
+               long ret = bindings.BigSize_hash(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       public override int GetHashCode() {
+               return (int)this.hash();
+       }
+       /**
+        * Checks if two BigSizes contain equal inner contents.
+        * This ignores pointers and is_owned flags and looks at the values in fields.
+        * Two objects with NULL inner values will be considered "equal" here.
+        */
+       public bool eq(org.ldk.structs.BigSize b) {
+               bool ret = bindings.BigSize_eq(this.ptr, b == null ? 0 : b.ptr);
+               GC.KeepAlive(this);
+               GC.KeepAlive(b);
+               if (this != null) { this.ptrs_to.AddLast(b); };
+               return ret;
+       }
+
+       public override bool Equals(object o) {
+               if (!(o is BigSize)) return false;
+               return this.eq((BigSize)o);
+       }
+       /**
+        * Serialize the BigSize object into a byte array which can be read by BigSize_read
+        */
+       public byte[] write() {
+               byte[] ret = bindings.BigSize_write(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       /**
+        * Read a BigSize from a byte array, created by BigSize_write
+        */
+       public static Result_BigSizeDecodeErrorZ read(byte[] ser) {
+               long ret = bindings.BigSize_read(ser);
+               GC.KeepAlive(ser);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Result_BigSizeDecodeErrorZ ret_hu_conv = Result_BigSizeDecodeErrorZ.constr_from_ptr(ret);
+               return ret_hu_conv;
+       }
+
 }
 } } }