MCPcopy Index your code
hub / github.com/RustPython/RustPython / is_lowercase

Method is_lowercase

crates/vm/src/bytes_inner.rs:1034–1036  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1032
1033impl anystr::AnyChar for u8 {
1034 fn is_lowercase(self) -> bool {
1035 self.is_ascii_lowercase()
1036 }
1037
1038 fn is_uppercase(self) -> bool {
1039 self.is_ascii_uppercase()

Callers 3

py_islowerMethod · 0.45
py_isupperMethod · 0.45
istitleMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected