[C#] Drop reference to `assert` which makes building on Win hard
[ldk-java] / c_sharp / src / org / ldk / structs / TwoTuple_OutPointScriptZ.cs
1 using org.ldk.impl;
2 using org.ldk.enums;
3 using org.ldk.util;
4 using System;
5
6 namespace org { namespace ldk { namespace structs {
7
8
9 /**
10  * A Tuple
11  */
12 public class TwoTuple_OutPointScriptZ : CommonBase {
13         internal TwoTuple_OutPointScriptZ(object _dummy, long ptr) : base(ptr) { }
14         ~TwoTuple_OutPointScriptZ() {
15                 if (ptr != 0) { bindings.C2Tuple_OutPointScriptZ_free(ptr); }
16         }
17
18         /**
19          * 
20          */
21         public OutPoint get_a() {
22                 long ret = bindings.C2Tuple_OutPointScriptZ_get_a(this.ptr);
23                 GC.KeepAlive(this);
24                 if (ret >= 0 && ret <= 4096) { return null; }
25                 org.ldk.structs.OutPoint ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.OutPoint(null, ret); }
26                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
27                 return ret_hu_conv;
28         }
29
30         /**
31          * 
32          */
33         public byte[] get_b() {
34                 byte[] ret = bindings.C2Tuple_OutPointScriptZ_get_b(this.ptr);
35                 GC.KeepAlive(this);
36                 return ret;
37         }
38
39         internal long clone_ptr() {
40                 long ret = bindings.C2Tuple_OutPointScriptZ_clone_ptr(this.ptr);
41                 GC.KeepAlive(this);
42                 return ret;
43         }
44
45         /**
46          * Creates a new tuple which has the same data as `orig`
47          * but with all dynamically-allocated buffers duplicated in new buffers.
48          */
49         public TwoTuple_OutPointScriptZ clone() {
50                 long ret = bindings.C2Tuple_OutPointScriptZ_clone(this.ptr);
51                 GC.KeepAlive(this);
52                 if (ret >= 0 && ret <= 4096) { return null; }
53                 TwoTuple_OutPointScriptZ ret_hu_conv = new TwoTuple_OutPointScriptZ(null, ret);
54                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
55                 return ret_hu_conv;
56         }
57
58         /**
59          * Creates a new C2Tuple_OutPointScriptZ from the contained elements.
60          */
61         public static TwoTuple_OutPointScriptZ of(org.ldk.structs.OutPoint a, byte[] b) {
62                 long ret = bindings.C2Tuple_OutPointScriptZ_new(a == null ? 0 : a.ptr, b);
63                 GC.KeepAlive(a);
64                 GC.KeepAlive(b);
65                 if (ret >= 0 && ret <= 4096) { return null; }
66                 TwoTuple_OutPointScriptZ ret_hu_conv = new TwoTuple_OutPointScriptZ(null, ret);
67                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
68                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(a); };
69                 return ret_hu_conv;
70         }
71
72 }
73 } } }