public final function execute(OperandStack $values)
 {
     $rhs = $values->peek();
     $values->pop();
     $lhs = $values->peek();
     $result = $this->executeImplementation($lhs, $rhs);
     $values->replaceTop($result);
 }