Expression : 1*2a
Error: Unknown function or variable 'a' at pos 3 in expression '1*2a'
Code:
val map = Map("2a" -> 0.1)
val expressionBuilder = new ExpressionBuilder("1*2a")
.variables(map.keys.toList: _*)
.build
Is this not supported or is it a probable bug?