6 namespace org { namespace ldk { namespace structs {
10 * Features used within an `offer`.
12 public class OfferFeatures : CommonBase {
13 internal OfferFeatures(object _dummy, long ptr) : base(ptr) { }
15 if (ptr != 0) { bindings.OfferFeatures_free(ptr); }
19 * Checks if two OfferFeaturess contain equal inner contents.
20 * This ignores pointers and is_owned flags and looks at the values in fields.
21 * Two objects with NULL inner values will be considered "equal" here.
23 public bool eq(org.ldk.structs.OfferFeatures b) {
24 bool ret = bindings.OfferFeatures_eq(this.ptr, b.ptr);
27 if (this != null) { this.ptrs_to.AddLast(b); };
31 public override bool Equals(object o) {
32 if (!(o is OfferFeatures)) return false;
33 return this.eq((OfferFeatures)o);
35 internal long clone_ptr() {
36 long ret = bindings.OfferFeatures_clone_ptr(this.ptr);
42 * Creates a copy of the OfferFeatures
44 public OfferFeatures clone() {
45 long ret = bindings.OfferFeatures_clone(this.ptr);
47 if (ret >= 0 && ret <= 4096) { return null; }
48 org.ldk.structs.OfferFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.OfferFeatures(null, ret); }
49 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
54 * Generates a non-cryptographic 64-bit hash of the OfferFeatures.
57 long ret = bindings.OfferFeatures_hash(this.ptr);
62 public override int GetHashCode() {
63 return (int)this.hash();
66 * Create a blank Features with no features set
68 public static OfferFeatures empty() {
69 long ret = bindings.OfferFeatures_empty();
70 if (ret >= 0 && ret <= 4096) { return null; }
71 org.ldk.structs.OfferFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.OfferFeatures(null, ret); }
72 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
77 * Returns true if this `Features` object contains required features unknown by `other`.
79 public bool requires_unknown_bits_from(org.ldk.structs.OfferFeatures other) {
80 bool ret = bindings.OfferFeatures_requires_unknown_bits_from(this.ptr, other.ptr);
83 if (this != null) { this.ptrs_to.AddLast(other); };
88 * Returns true if this `Features` object contains unknown feature flags which are set as
91 public bool requires_unknown_bits() {
92 bool ret = bindings.OfferFeatures_requires_unknown_bits(this.ptr);
98 * Sets a required feature bit. Errors if `bit` is outside the feature range as defined
101 * Note: Required bits are even. If an odd bit is given, then the corresponding even bit will
102 * be set instead (i.e., `bit - 1`).
104 * [BOLT 9]: https://github.com/lightning/bolts/blob/master/09-features.md
106 public Result_NoneNoneZ set_required_feature_bit(long bit) {
107 long ret = bindings.OfferFeatures_set_required_feature_bit(this.ptr, bit);
110 if (ret >= 0 && ret <= 4096) { return null; }
111 Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);
116 * Sets an optional feature bit. Errors if `bit` is outside the feature range as defined
119 * Note: Optional bits are odd. If an even bit is given, then the corresponding odd bit will be
120 * set instead (i.e., `bit + 1`).
122 * [BOLT 9]: https://github.com/lightning/bolts/blob/master/09-features.md
124 public Result_NoneNoneZ set_optional_feature_bit(long bit) {
125 long ret = bindings.OfferFeatures_set_optional_feature_bit(this.ptr, bit);
128 if (ret >= 0 && ret <= 4096) { return null; }
129 Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);
134 * Sets a required custom feature bit. Errors if `bit` is outside the custom range as defined
135 * by [bLIP 2] or if it is a known `T` feature.
137 * Note: Required bits are even. If an odd bit is given, then the corresponding even bit will
138 * be set instead (i.e., `bit - 1`).
140 * [bLIP 2]: https://github.com/lightning/blips/blob/master/blip-0002.md#feature-bits
142 public Result_NoneNoneZ set_required_custom_bit(long bit) {
143 long ret = bindings.OfferFeatures_set_required_custom_bit(this.ptr, bit);
146 if (ret >= 0 && ret <= 4096) { return null; }
147 Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);
152 * Sets an optional custom feature bit. Errors if `bit` is outside the custom range as defined
153 * by [bLIP 2] or if it is a known `T` feature.
155 * Note: Optional bits are odd. If an even bit is given, then the corresponding odd bit will be
156 * set instead (i.e., `bit + 1`).
158 * [bLIP 2]: https://github.com/lightning/blips/blob/master/blip-0002.md#feature-bits
160 public Result_NoneNoneZ set_optional_custom_bit(long bit) {
161 long ret = bindings.OfferFeatures_set_optional_custom_bit(this.ptr, bit);
164 if (ret >= 0 && ret <= 4096) { return null; }
165 Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);