Apama 10.15.3 | Release Notes | What's New In Apama 10.15.2 | EPL enhancements in 10.15.2
 
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 float
For example:
integer i := 10;
float f := <float> i;
See also Type conversion and Handling the any type.