| 34 | // integer conversion needs to be very explicit |
| 35 | static constexpr script_verify_flags from_int(value_type f) { script_verify_flags r; r.m_value = f; return r; } |
| 36 | constexpr value_type as_int() const { return m_value; } |
| 37 | |
| 38 | // bitwise operations |
| 39 | constexpr script_verify_flags operator~() const { return from_int(~m_value); } |
no outgoing calls