MCPcopy Create free account
hub / github.com/dylan-sutton-chavez/edge-python / lt_vals

Method lt_vals

compiler/src/modules/vm/ops.rs:351–353  ·  view source on GitHub ↗
(&self, a: Val, b: Val)

Source from the content-addressed store, hash-verified

349 }
350
351 pub fn lt_vals(&self, a: Val, b: Val) -> Result<bool, VmErr> {
352 self.lt_vals_d(a, b, 0)
353 }
354
355 /* Depth-tracked `<`; past the cap surface RecursionError instead of overflowing the stack. */
356 fn lt_vals_d(&self, a: Val, b: Val, depth: usize) -> Result<bool, VmErr> {

Callers 3

handle_compareMethod · 0.80
call_minmaxMethod · 0.80
sort_ltMethod · 0.80

Calls 1

lt_vals_dMethod · 0.80

Tested by

no test coverage detected