trisquel-icecat/icecat/intl/icu_capi/bindings/cpp/ICU4XCollatorCaseFirst.hpp
2025-10-06 02:35:48 -06:00

26 lines
527 B
C++

#ifndef ICU4XCollatorCaseFirst_HPP
#define ICU4XCollatorCaseFirst_HPP
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <algorithm>
#include <memory>
#include <variant>
#include <optional>
#include "diplomat_runtime.hpp"
#include "ICU4XCollatorCaseFirst.h"
/**
* See the [Rust documentation for `CaseFirst`](https://docs.rs/icu/latest/icu/collator/enum.CaseFirst.html) for more information.
*/
enum struct ICU4XCollatorCaseFirst {
Auto = 0,
Off = 1,
LowerFirst = 2,
UpperFirst = 3,
};
#endif