# last seems correct[7]pry(main)>(0.24901079128550474r+34.00010700985213r*10).to_f=>340.2500808898068[8]pry(main)>340.25008088980684=>340.25008088980684# Computing with 10 += seems correct too[18]pry(main)>n=0.24901079128550474;[19]pry(main)>10.times{pn+=34.00010700985213}34.24911780113763668.24922481098977102.2493318208419136.24943883069403170.24954584054615204.24965285039826238.24975986025038272.2498668701025306.2499738799546340.2500808898067=>10[20]pry(main)>340.2500808898067<340.25008088980684=>true# But each/to_a gives different results:[17]pry(main)>((0.24901079128550474)...(340.25008088980684)).step(34.00010700985213).to_a=>[0.24901079128550474,34.249117801137636,68.24922481098976,102.24933182084189,136.24943883069403,170.24954584054615,204.2496528503983,238.24975986025044,272.24986687010255,306.24997387995467]
So I think last is correct, and each misses to yield the last element, probably due to accumulated errors.
Fix Enumerator::ArithmeticSequence handling of float ranges
Depending on the float range, there could be an off-by-one error,
where the last result that should be in the range was missed. Fix
this by checking if the computed value for the expected value
outside the range is still inside the range, and if so, increment
the step size.