You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Henri Biestro (JIRA)" <ji...@apache.org> on 2015/07/27 11:52:05 UTC

[jira] [Created] (JEXL-170) Implement assignment operators

Henri Biestro created JEXL-170:
----------------------------------

             Summary: Implement assignment operators
                 Key: JEXL-170
                 URL: https://issues.apache.org/jira/browse/JEXL-170
             Project: Commons JEXL
          Issue Type: Improvement
    Affects Versions: 3.0
            Reporter: Henri Biestro
             Fix For: 3.0


Implementation of side-effect versions of common operators:
Their default behavior is to execute the operator and assign the left hand side with the result.
For instance {code}a += 2{code} is equivalent to {code}a = a + 2{code}.
JexlArithmetic can be derived to overload those operators.
The list of operators to implement: +=, -=; *=, /=, &=, |=, ^=



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)