MCPcopy Create free account
hub / github.com/csskit/csskit / is_lower_case

Method is_lower_case

crates/css_lexer/src/token.rs:924–926  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

922 /// Checks if the [Token] is Ident like and none of the characters are ASCII upper-case.
923 #[inline]
924 pub const fn is_lower_case(&self) -> bool {
925 self.is_ident_like() && !self.third_flag()
926 }
927
928 #[inline]
929 pub fn atom_bits(&self) -> u32 {

Callers 2

eq_ignore_ascii_caseMethod · 0.80
parse_ascii_lowerMethod · 0.80

Calls 2

is_ident_likeMethod · 0.80
third_flagMethod · 0.80

Tested by

no test coverage detected