Source code
Revision control
Copy as Markdown
Other Tools
#ifndef icu4x_DecimalSign_D_HPP
#define icu4x_DecimalSign_D_HPP
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <memory>
#include <functional>
#include <optional>
#include <cstdlib>
#include "../diplomat_runtime.hpp"
namespace icu4x {
namespace capi {
enum DecimalSign {
DecimalSign_None = 0,
DecimalSign_Negative = 1,
DecimalSign_Positive = 2,
};
typedef struct DecimalSign_option {union { DecimalSign ok; }; bool is_ok; } DecimalSign_option;
} // namespace capi
} // namespace
namespace icu4x {
/**
* The sign of a Decimal, as shown in formatting.
*
* See the [Rust documentation for `Sign`](https://docs.rs/fixed_decimal/latest/fixed_decimal/enum.Sign.html) for more information.
*/
class DecimalSign {
public:
enum Value {
None = 0,
Negative = 1,
Positive = 2,
};
DecimalSign() = default;
// Implicit conversions between enum and ::Value
constexpr DecimalSign(Value v) : value(v) {}
constexpr operator Value() const { return value; }
// Prevent usage as boolean value
explicit operator bool() const = delete;
inline icu4x::capi::DecimalSign AsFFI() const;
inline static icu4x::DecimalSign FromFFI(icu4x::capi::DecimalSign c_enum);
private:
Value value;
};
} // namespace
#endif // icu4x_DecimalSign_D_HPP