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
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