Computing (FOLDOC) dictionary
Jump to user comments
programming (Or "coercion") The abilty of some
compilers expression of one type is used in a context where another type
is expected.
an expression like sin(1) is compiled as sin(integerToReal(1))
where sin is of type Real -@# Real.
A coercion is usually performed automatically by the compiler
the programmer.
(1997-07-28)