Re: [jexl] Make jexl consider power operator

2020-09-23 Thread aisen faith marrero
Thanks a million for... ! Sent from my iPhone > On Sep 23, 2020, at 7:28 AM, BENGUIGUI Michael > wrote: > > Dear all, > > I am trying to evaluate the following expression via jexl : x^y > What I've tried, is to extend JexlArithmetic: > > // Extend Arithmetic > public class ExtendedJexlArith

[jexl] Make jexl consider power operator

2020-09-23 Thread BENGUIGUI Michael
Dear all, I am trying to evaluate the following expression via jexl : x^y What I've tried, is to extend JexlArithmetic: // Extend Arithmetic public class ExtendedJexlArithmetic extends JexlArithmetic { public ExtendedJexlArithmetic(boolean strict){ super(strict); } public xo