icu_capi 1.2.0

C interface to ICU4X
Documentation
#ifndef ICU4XFixedDecimalSignDisplay_HPP
#define ICU4XFixedDecimalSignDisplay_HPP
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <algorithm>
#include <memory>
#include <variant>
#include <optional>
#include "diplomat_runtime.hpp"

#include "ICU4XFixedDecimalSignDisplay.h"



/**
 * ECMA-402 compatible sign display preference.
 * 
 * See the [Rust documentation for `SignDisplay`](https://docs.rs/fixed_decimal/latest/fixed_decimal/enum.SignDisplay.html) for more information.
 */
enum struct ICU4XFixedDecimalSignDisplay {
  Auto = 0,
  Never = 1,
  Always = 2,
  ExceptZero = 3,
  Negative = 4,
};

#endif