We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f463d36 commit 21ff929Copy full SHA for 21ff929
src/lib.rs
@@ -64,12 +64,12 @@ mod tables;
64
mod tests;
65
66
/// Methods for determining characters not restricted from use for identifiers.
67
-pub trait IdentifierStatusChar {
+pub trait UnicodeIdentifierStatus {
68
/// Returns whether the character is not restricted from use for identifiers.
69
fn identifier_allowed(self) -> bool;
70
}
71
72
-impl IdentifierStatusChar for char {
+impl UnicodeIdentifierStatus for char {
73
#[inline]
74
fn identifier_allowed(self) -> bool { is::identifier_status_allowed(self) }
75
0 commit comments