1#ifndef ICU4X_CollatorCaseFirst_D_HPP
2#define ICU4X_CollatorCaseFirst_D_HPP
17 enum CollatorCaseFirst {
18 CollatorCaseFirst_Off = 0,
19 CollatorCaseFirst_Lower = 1,
20 CollatorCaseFirst_Upper = 2,
23 typedef struct CollatorCaseFirst_option {
union { CollatorCaseFirst ok; };
bool is_ok; } CollatorCaseFirst_option;
43 constexpr operator Value()
const {
return value; }
45 explicit operator bool()
const =
delete;
47 inline icu4x::capi::CollatorCaseFirst AsFFI()
const;
Definition CollatorCaseFirst.d.hpp:31
constexpr CollatorCaseFirst(Value v)
Definition CollatorCaseFirst.d.hpp:42
Value
Definition CollatorCaseFirst.d.hpp:33
@ Upper
Definition CollatorCaseFirst.d.hpp:36
@ Lower
Definition CollatorCaseFirst.d.hpp:35
@ Off
Definition CollatorCaseFirst.d.hpp:34
CollatorCaseFirst()
Definition CollatorCaseFirst.d.hpp:39