IntListToFloatList¶
in Lib.numbers.floats.conversion
Converts a list of integers to a list of floats.
Each integer in the input list is cast to its floating-point equivalent.
Tips: - This is useful when an operator requires a list of floats, but you have a list of integers.
AKA: cast, convert, int to float, integer to float
Outputs¶
| Name | Type |
|---|---|
| Result | System.Collections.Generic.List`1[System.Single] |