blob: 71243211567d7dc81a5b5edee7e67534e74b4624 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef ICU4XTrailingCase_HPP
#define ICU4XTrailingCase_HPP
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <algorithm>
#include <memory>
#include <variant>
#include <optional>
#include "diplomat_runtime.hpp"
#include "ICU4XTrailingCase.h"
/**
* See the [Rust documentation for `TrailingCase`](https://docs.rs/icu/latest/icu/casemap/titlecase/enum.TrailingCase.html) for more information.
*/
enum struct ICU4XTrailingCase {
Lower = 0,
Unchanged = 1,
};
#endif
|