EPL enhancements in 10.15.2
Apama 10.15.2 includes the following EPL enhancements:

Support for the following type conversions has been added using explicit cast operations:
integer to
float
any(integer) to
float
integer to
decimal
any(integer) to
decimal
float to
decimal
any(float) to
decimal
decimal to
float
any(decimal) to
floatFor example:
integer i := 10;
float f := <float> i;