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

Function is_py_ascii_whitespace

crates/vm/src/bytes_inner.rs:1244–1246  ·  view source on GitHub ↗
(b: u8)

Source from the content-addressed store, hash-verified

1242}
1243
1244pub const fn is_py_ascii_whitespace(b: u8) -> bool {
1245 matches!(b, b'\t' | b'\n' | b'\x0C' | b'\r' | b' ' | b'\x0B')
1246}

Callers 1

fromhexMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected