1
0
Fork 0
firefox/intl/icu_capi/bindings/cpp/ICU4XCollatorAlternateHandling.hpp
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

25 lines
563 B
C++

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