You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let right_compare = call_function_1_arg_min(right_compare_func, right,&[left.clone()], arena);
49
+
50
+
returnmatch right_compare {
51
+
Ok(result) => Ok(result),
52
+
Err(err) => {
53
+
if err.is_same_type(&arena.exceptions.not_implemented_error){
54
+
let message = format!("'{}' not supported between instances of '{}' and '{}'", op, left.clone_class(arena).get_name(), right.clone_class(arena).get_name());
let message = format!("'{}' not supported between instances of '{}' and '{}'", op, left.clone_class(arena).get_name(), right.clone_class(arena).get_name());
0 commit comments