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

Function compactlongs_guard

crates/vm/src/frame.rs:1165–1167  ·  view source on GitHub ↗
(lhs: &PyObject, rhs: &PyObject, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

1163
1164#[inline]
1165fn compactlongs_guard(lhs: &PyObject, rhs: &PyObject, vm: &VirtualMachine) -> bool {
1166 compact_int_from_obj(lhs, vm).is_some() && compact_int_from_obj(rhs, vm).is_some()
1167}
1168
1169macro_rules! bitwise_longs_action {
1170 ($name:ident, $op:tt) => {

Callers

nothing calls this directly

Calls 1

compact_int_from_objFunction · 0.85

Tested by

no test coverage detected