Daniel Lemire
Daniel Lemire
This is similar to issue https://github.com/fastfloat/fast_float/issues/86 You would probably want to introduce a whole distinct code sequence, akin to our current fallback. Pull requests invited. Be mindful of the need...
Note that `long double` is not a well defined type in practice. It appears that Visual Studio might map `long double` to `double`. And `long double` could vary from standard...
To be reviewed and assessed. Thanks.
@Andersama We want the `from_chars` function to abide by the standard as much as possible. It should be close to a "drop-in" replacement for whatever the standard library provides. However,...
We have decent benchmarks so we can assess performance issues. I would not necessarily be overly concerned at first.
Pull requests invited!
To be clear here, if I understand correctly, @jrahlf wants an implementation that supports *only* binary32 numbers (float). Squeezing the table is easy, one can simply follow through the paper...
> I am assuming here that the float table is a sub range of the double table. Yes, it is.
The from_chars supports various number types, including integer types. For integer types, there is a finite range. My view is that the range of values from binary64 and binary32 numbers...
Is this related to https://github.com/fastfloat/fast_float/issues/23 ?