Skip to main content

mul

Function mul 

Source
pub async fn mul<CM, CMFut, F, FFut>(
    stack: &mut Vec<Value>,
    call_method: CM,
    fallback: F,
) -> Result<(), RuntimeError>
where CM: FnMut(Value, &'static str, Value) -> CMFut, CMFut: Future<Output = Result<Value, RuntimeError>>, F: FnMut(Value, Value) -> FFut, FFut: Future<Output = Result<Value, RuntimeError>>,