Replies: 3 comments 1 reply
-
|
Yes, std::from_chars() introduced in C++17 is very fast in GCC. You are correct. The library used GCC is available standalone at |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
More precisely, you can examine the implementation in GCC. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
So, may I ask, is the simdjson get_double, get_int etc implemented in terms of from_chars then? Or is it a faster simd oriented implementation? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
std::from_chars() introduced in C++17 as being the fastest conversion function in the west...
Are simdjson get_double(), get_int64() and get_uint64() methods in terms of std::from_chars() or is it using a SIMD based faster implementation?
Beta Was this translation helpful? Give feedback.
All reactions