1/*!
2Types for parsing files in the `extracted` subdirectory of the Unicode
3Character Database download.
4
5These are placed here, rather than at the top level, to help keep the number of
6types in any given module managable.
7*/
8
9pub use self::{
10 derived_bidi_class::DerivedBidiClass,
11 derived_binary_properties::DerivedBinaryProperties,
12 derived_combining_class::DerivedCombiningClass,
13 derived_decomposition_type::DerivedDecompositionType,
14 derived_east_asian_width::DerivedEastAsianWidth,
15 derived_general_category::DerivedGeneralCategory,
16 derived_joining_group::DerivedJoiningGroup,
17 derived_joining_type::DerivedJoiningType,
18 derived_line_break::DerivedLineBreak, derived_name::DerivedName,
19 derived_numeric_type::DerivedNumericType,
20 derived_numeric_values::DerivedNumericValues,
21};
22
23mod derived_bidi_class;
24mod derived_binary_properties;
25mod derived_combining_class;
26mod derived_decomposition_type;
27mod derived_east_asian_width;
28mod derived_general_category;
29mod derived_joining_group;
30mod derived_joining_type;
31mod derived_line_break;
32mod derived_name;
33mod derived_numeric_type;
34mod derived_numeric_values;
35