| 1: | func @fToI = <{FROM: Type, TO: Type}> (from: FROM) -> TO; |
Convert any floating-point type to any integral type
FROM: type to convert from - must be floating-point or vector or floating-point
TO: type to convert to - must be integral or vector or integral
from: value to convert
Returns converted value
FROM and TO must be both a vector or neither a vector. If they are a vector, they must contain the same number of elements.
(TODO)
| @fext | Extend any floating-point type to any other larger floating-point type |