Victor Zverovich

Results 199 comments of Victor Zverovich

If you do it in your own private project then it's less of a problem as you are the only one who will suffer because of the breakage.

> It seems like we need to take the join_view argument to format() by mutable & rather than const&, but making this change results in fmt considering join_view to be...

Looks like we need to propagate (lack of) constness during format string compilation. Currently it passes everything by `const&`.

It is expected that the (default) runtime formatting will be slightly slower than calling Dragonbox directly because the formatting function has to do some extra work. This overhead can be...

Will need to look in more details but one surprising thing is that full and compact cache results are identical.

So I looked in more details and one obvious problem with the new benchmark is ODR violation: you are trying to use {fmt} compiled with different configurations in different TUs....

Looking at the CPU profile ~40% of time is spent postprocessing and writing the output in `do_write_float`: Some of that is inevitable since we have to deal with all the...