Lines Matching defs:unicode
119 * **unicode** -
122 * **unicode-age** -
124 [Unicode `Age` property](https://www.unicode.org/reports/tr44/tr44-24.html#Character_Age).
127 * **unicode-bool** -
131 * **unicode-case** -
133 [Unicode's "simple loose matches" specification](https://www.unicode.org/reports/tr18/#Simple_Loose_Matches).
134 * **unicode-gencat** -
136 [Uncode general categories](https://www.unicode.org/reports/tr44/tr44-24.html#General_Category_Values).
139 * **unicode-perl** -
144 `unicode-bool` and `unicode-gencat` features are enabled, respectively.
145 * **unicode-script** -
147 [Unicode scripts and script extensions](https://www.unicode.org/reports/tr24/).
150 * **unicode-segment** -
152 [Unicode text segmentation algorithms](https://www.unicode.org/reports/tr29/).
163 pub use crate::unicode::UnicodeWordError;
170 mod unicode;
219 /// [UTS#18 Annex C](https://unicode.org/reports/tr18/#Compatibility_Properties).
227 /// If the `unicode-perl` feature is not enabled, then this function panics.
232 try_is_word_character(c).expect("unicode-perl feature must be enabled")
239 /// [UTS#18 Annex C](https://unicode.org/reports/tr18/#Compatibility_Properties).
247 /// If the `unicode-perl` feature is not enabled, then this function always
252 unicode::is_word_character(c)
285 #[cfg(feature = "unicode-perl")]
302 #[cfg(not(feature = "unicode-perl"))]
308 #[cfg(not(feature = "unicode-perl"))]