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

Function ge

crates/vm/src/stdlib/_operator.rs:32–34  ·  view source on GitHub ↗
(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

30
31 #[pyfunction]
32 fn ge(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult {
33 a.rich_compare(b, PyComparisonOp::Ge, vm)
34 }
35
36 #[pyfunction]
37 fn eq(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult {

Callers

nothing calls this directly

Calls 1

rich_compareMethod · 0.80

Tested by

no test coverage detected