Function execute_right_division
Source pub async fn execute_right_division<CM, CMFut, SF, SFFut, MF, MFFut>(
lhs: &Value,
rhs: &Value,
call_method: CM,
scalarish_fallback: SF,
matrix_fallback: MF,
) -> Result<Value, RuntimeError>where
CM:
FnMut(
Value, &'static
str,
Value) -> CMFut,
CMFut:
Future<Output =
Result<
Value,
RuntimeError>>,
SF:
FnMut(
Value,
Value) -> SFFut,
SFFut:
Future<Output =
Result<
Value,
RuntimeError>>,
MF:
FnMut(
Value,
Value) -> MFFut,
MFFut:
Future<Output =
Result<
Value,
RuntimeError>>,