71 lines
2.7 KiB
C++
71 lines
2.7 KiB
C++
#ifndef ICU4XPluralOperands_HPP
|
|
#define ICU4XPluralOperands_HPP
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
#include <algorithm>
|
|
#include <memory>
|
|
#include <variant>
|
|
#include <optional>
|
|
#include "diplomat_runtime.hpp"
|
|
|
|
#include "ICU4XPluralOperands.h"
|
|
|
|
class ICU4XPluralOperands;
|
|
#include "ICU4XError.hpp"
|
|
class ICU4XFixedDecimal;
|
|
|
|
/**
|
|
* A destruction policy for using ICU4XPluralOperands with std::unique_ptr.
|
|
*/
|
|
struct ICU4XPluralOperandsDeleter {
|
|
void operator()(capi::ICU4XPluralOperands* l) const noexcept {
|
|
capi::ICU4XPluralOperands_destroy(l);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* See the [Rust documentation for `PluralOperands`](https://docs.rs/icu/latest/icu/plurals/struct.PluralOperands.html) for more information.
|
|
*/
|
|
class ICU4XPluralOperands {
|
|
public:
|
|
|
|
/**
|
|
* Construct for a given string representing a number
|
|
*
|
|
* See the [Rust documentation for `from_str`](https://docs.rs/icu/latest/icu/plurals/struct.PluralOperands.html#method.from_str) for more information.
|
|
*/
|
|
static diplomat::result<ICU4XPluralOperands, ICU4XError> create_from_string(const std::string_view s);
|
|
|
|
/**
|
|
* Construct from a FixedDecimal
|
|
*
|
|
* Retains at most 18 digits each from the integer and fraction parts.
|
|
*/
|
|
static ICU4XPluralOperands create_from_fixed_decimal(const ICU4XFixedDecimal& x);
|
|
inline const capi::ICU4XPluralOperands* AsFFI() const { return this->inner.get(); }
|
|
inline capi::ICU4XPluralOperands* AsFFIMut() { return this->inner.get(); }
|
|
inline explicit ICU4XPluralOperands(capi::ICU4XPluralOperands* i) : inner(i) {}
|
|
ICU4XPluralOperands() = default;
|
|
ICU4XPluralOperands(ICU4XPluralOperands&&) noexcept = default;
|
|
ICU4XPluralOperands& operator=(ICU4XPluralOperands&& other) noexcept = default;
|
|
private:
|
|
std::unique_ptr<capi::ICU4XPluralOperands, ICU4XPluralOperandsDeleter> inner;
|
|
};
|
|
|
|
#include "ICU4XFixedDecimal.hpp"
|
|
|
|
inline diplomat::result<ICU4XPluralOperands, ICU4XError> ICU4XPluralOperands::create_from_string(const std::string_view s) {
|
|
auto diplomat_result_raw_out_value = capi::ICU4XPluralOperands_create_from_string(s.data(), s.size());
|
|
diplomat::result<ICU4XPluralOperands, ICU4XError> diplomat_result_out_value;
|
|
if (diplomat_result_raw_out_value.is_ok) {
|
|
diplomat_result_out_value = diplomat::Ok<ICU4XPluralOperands>(ICU4XPluralOperands(diplomat_result_raw_out_value.ok));
|
|
} else {
|
|
diplomat_result_out_value = diplomat::Err<ICU4XError>(static_cast<ICU4XError>(diplomat_result_raw_out_value.err));
|
|
}
|
|
return diplomat_result_out_value;
|
|
}
|
|
inline ICU4XPluralOperands ICU4XPluralOperands::create_from_fixed_decimal(const ICU4XFixedDecimal& x) {
|
|
return ICU4XPluralOperands(capi::ICU4XPluralOperands_create_from_fixed_decimal(x.AsFFI()));
|
|
}
|
|
#endif
|