The Implicit type conversions section in the help states that Any numeric type will be automatically converted to Any numeric type.
However, I’ve got a method which takes doubles, Function AreEqual:Void(expected:Double, actual:Double), and if I try to pass floats in, AreEqual(123.45, 123.45), the compiler compains with “can’t find overload … with argument types (float, float)”.
The same thing happens with other numeric data types, e.g. declared as Long and passing Int.
Am I missing something or have I misunderstood?