|
Float to Float conversion with different precisions
-
Field type:
CastKind
|
|
Float to Float conversion while rounding toward +inf. E.g., 23.2 -> 24.0,
and -23.7 -> -23.
-
Field type:
CastKind
|
|
Float to Float conversion while rounding toward -inf. E.g., 23.7 -> 23.0,
and -23.2 -> -24.
-
Field type:
CastKind
|
|
Float to Float conversion while rounding to nearest integer.. Ties to
even.
-
Field type:
CastKind
|
|
Float to Float conversion while rounding toward zero. E.g. 23.7 -> 23.0,
and -23.7 -> -23.
-
Field type:
CastKind
|
|
Float to Integer rounded up conversion (toward +inf). When the given float
is too large to be represented as an integer, the result is MIN_INT, i.e.,
0x80000000 for 32-bit integers and 0x8000000000000000 for 64-bit integers.
-
Field type:
CastKind
|
|
Float to Integer rounded down conversion (toward -inf). When the given
float is too large to be represented as an integer, the result is MIN_INT,
i.e., 0x80000000 for 32-bit integers and 0x8000000000000000 for 64-bit
integers.
-
Field type:
CastKind
|
|
Float to Nearest Integer rounded conversion. Ties to even. When the given
float is too large to be represented as an integer, the result is MIN_INT,
i.e., 0x80000000 for 32-bit integers and 0x8000000000000000 for 64-bit
integers.
-
Field type:
CastKind
|
|
Float to Integer truncated conversion (closest to but no greater in
absolute value than the infinitely precise result). When the given float
is too large to be represented as an integer, the result is MIN_INT, i.e.,
0x80000000 for 32-bit integers and 0x8000000000000000 for 64-bit integers.
-
Field type:
CastKind
|
|
Signed integer to float conversion
-
Field type:
CastKind
|
|
Sign-extending conversion
-
Field type:
CastKind
|
|
Unsigned integer to float conversion
-
Field type:
CastKind
|
|
Zero-extending conversion
-
Field type:
CastKind
|