Sequence ToF64

std/conversion/vector/f32::ToF64


Inputs

value: Stream<Vec<f32>>

Outputs

↦ value: Stream<Vec<f64>>


Convert stream of Vec<f32> into Vec<f64> one.

Vec<f32> gets converted into Vec<f64>, and the resulting vectors are send through stream in continuity.

Every f32 is fitted into the closest f64. Positive and negative infinity are conserved, as well as not-a-number state. If overflowing, infinity of the same sign is used.