[C#] Drop reference to `assert` which makes building on Win hard
[ldk-java] / c_sharp / src / org / ldk / structs / Result_CVec_SignatureZNoneZ.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 public class Result_CVec_SignatureZNoneZ : CommonBase {
9         Result_CVec_SignatureZNoneZ(object _dummy, long ptr) : base(ptr) { }
10         ~Result_CVec_SignatureZNoneZ() {
11                 if (ptr != 0) { bindings.CResult_CVec_SignatureZNoneZ_free(ptr); }
12         }
13
14         internal static Result_CVec_SignatureZNoneZ constr_from_ptr(long ptr) {
15                 if (bindings.CResult_CVec_SignatureZNoneZ_is_ok(ptr)) {
16                         return new Result_CVec_SignatureZNoneZ_OK(null, ptr);
17                 } else {
18                         return new Result_CVec_SignatureZNoneZ_Err(null, ptr);
19                 }
20         }
21         public class Result_CVec_SignatureZNoneZ_OK : Result_CVec_SignatureZNoneZ {
22                 public readonly byte[][] res;
23                 internal Result_CVec_SignatureZNoneZ_OK(object _dummy, long ptr) : base(_dummy, ptr) {
24                         this.res = bindings.CResult_CVec_SignatureZNoneZ_get_ok(ptr);
25                 }
26         }
27
28         public class Result_CVec_SignatureZNoneZ_Err : Result_CVec_SignatureZNoneZ {
29                 internal Result_CVec_SignatureZNoneZ_Err(object _dummy, long ptr) : base(_dummy, ptr) {
30                 }
31         }
32
33         /**
34          * Creates a new CResult_CVec_SignatureZNoneZ in the success state.
35          */
36         public static Result_CVec_SignatureZNoneZ ok(byte[][] o) {
37                 long ret = bindings.CResult_CVec_SignatureZNoneZ_ok(o != null ? InternalUtils.mapArray(o, o_conv_8 => InternalUtils.check_arr_len(o_conv_8, 64)) : null);
38                 GC.KeepAlive(o);
39                 if (ret >= 0 && ret <= 4096) { return null; }
40                 Result_CVec_SignatureZNoneZ ret_hu_conv = Result_CVec_SignatureZNoneZ.constr_from_ptr(ret);
41                 return ret_hu_conv;
42         }
43
44         /**
45          * Creates a new CResult_CVec_SignatureZNoneZ in the error state.
46          */
47         public static Result_CVec_SignatureZNoneZ err() {
48                 long ret = bindings.CResult_CVec_SignatureZNoneZ_err();
49                 if (ret >= 0 && ret <= 4096) { return null; }
50                 Result_CVec_SignatureZNoneZ ret_hu_conv = Result_CVec_SignatureZNoneZ.constr_from_ptr(ret);
51                 return ret_hu_conv;
52         }
53
54         /**
55          * Checks if the given object is currently in the success state
56          */
57         public bool is_ok() {
58                 bool ret = bindings.CResult_CVec_SignatureZNoneZ_is_ok(this.ptr);
59                 GC.KeepAlive(this);
60                 return ret;
61         }
62
63         internal long clone_ptr() {
64                 long ret = bindings.CResult_CVec_SignatureZNoneZ_clone_ptr(this.ptr);
65                 GC.KeepAlive(this);
66                 return ret;
67         }
68
69         /**
70          * Creates a new CResult_CVec_SignatureZNoneZ which has the same data as `orig`
71          * but with all dynamically-allocated buffers duplicated in new buffers.
72          */
73         public Result_CVec_SignatureZNoneZ clone() {
74                 long ret = bindings.CResult_CVec_SignatureZNoneZ_clone(this.ptr);
75                 GC.KeepAlive(this);
76                 if (ret >= 0 && ret <= 4096) { return null; }
77                 Result_CVec_SignatureZNoneZ ret_hu_conv = Result_CVec_SignatureZNoneZ.constr_from_ptr(ret);
78                 return ret_hu_conv;
79         }
80
81 }
82 } } }