function units_operator_subtract_isolate_operand in Units of Measurement 7.2
1 string reference to 'units_operator_subtract_isolate_operand'
- subtract.inc in plugins/
operator/ subtract.inc
File
- plugins/
operator/ subtract.inc, line 41
Code
function units_operator_subtract_isolate_operand(UnitsMathematicalExpression $operand1, UnitsMathematicalExpression $operand2, UnitsMathematicalExpression $equal_operand, $operand_to_isolate) {
if ($operand_to_isolate == 1) {
return units_mathematical_expression_operator_construct(units_get_operator('add'), $equal_operand, $operand2);
}
else {
return units_mathematical_expression_operator_construct(units_get_operator('subtract'), $operand1, $equal_operand);
}
}