X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FTwoTuple__u832u16Z.cs;fp=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FTwoTuple__u832u16Z.cs;h=1c1598e7e41a9fba11f77b958086994af3d53333;hb=3d1f246d05172683acd3b81836de4e4e9f0c1afd;hp=0000000000000000000000000000000000000000;hpb=a32b8843c44637ebd82c83390d17db573b972153;p=ldk-java diff --git a/c_sharp/src/org/ldk/structs/TwoTuple__u832u16Z.cs b/c_sharp/src/org/ldk/structs/TwoTuple__u832u16Z.cs new file mode 100644 index 00000000..1c1598e7 --- /dev/null +++ b/c_sharp/src/org/ldk/structs/TwoTuple__u832u16Z.cs @@ -0,0 +1,71 @@ +using org.ldk.impl; +using org.ldk.enums; +using org.ldk.util; +using System; + +namespace org { namespace ldk { namespace structs { + + +/** + * A Tuple + */ +public class TwoTuple__u832u16Z : CommonBase { + internal TwoTuple__u832u16Z(object _dummy, long ptr) : base(ptr) { } + ~TwoTuple__u832u16Z() { + if (ptr != 0) { bindings.C2Tuple__u832u16Z_free(ptr); } + } + + /** + * + */ + public byte[] get_a() { + long ret = bindings.C2Tuple__u832u16Z_get_a(this.ptr); + GC.KeepAlive(this); + if (ret >= 0 && ret <= 4096) { return null; } + byte[] ret_conv = InternalUtils.decodeUint8Array(ret); + return ret_conv; + } + + /** + * + */ + public short get_b() { + short ret = bindings.C2Tuple__u832u16Z_get_b(this.ptr); + GC.KeepAlive(this); + return ret; + } + + internal long clone_ptr() { + long ret = bindings.C2Tuple__u832u16Z_clone_ptr(this.ptr); + GC.KeepAlive(this); + return ret; + } + + /** + * Creates a new tuple which has the same data as `orig` + * but with all dynamically-allocated buffers duplicated in new buffers. + */ + public TwoTuple__u832u16Z clone() { + long ret = bindings.C2Tuple__u832u16Z_clone(this.ptr); + GC.KeepAlive(this); + if (ret >= 0 && ret <= 4096) { return null; } + TwoTuple__u832u16Z ret_hu_conv = new TwoTuple__u832u16Z(null, ret); + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); }; + return ret_hu_conv; + } + + /** + * Creates a new C2Tuple__u832u16Z from the contained elements. + */ + public static TwoTuple__u832u16Z of(byte[] a, short b) { + long ret = bindings.C2Tuple__u832u16Z_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(a, 32)), b); + GC.KeepAlive(a); + GC.KeepAlive(b); + if (ret >= 0 && ret <= 4096) { return null; } + TwoTuple__u832u16Z ret_hu_conv = new TwoTuple__u832u16Z(null, ret); + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); }; + return ret_hu_conv; + } + +} +} } }