Jorg Brown
Jorg Brown
StrCat doesn't support uint128 currently because it does everything using AlphaNum buffers, and those buffers aren't large enough to support all the digits of a uint128. uint128 does know how...
What debug assertion are you seeing?
Assigned to Mike who is looking at moving the underlying conversion routines to Abseil, which shouldn't have this problem.
Thanks for taking the time to look into this, and, like last time, special thanks for taking the time to do some benchmarks. Alas, similar to the effort to make...
I concur with poulls: The likely cause is that another thread is modifying the message while your thread is trying to convert it. A related possibility is that somehow, part...
It's true that EpsCopyOutputStream has the capability to use a separate buffer, which would allow you to use your faster BMI routines. Unfortunately it also has this constructor: ``` //...
I'd be curious how your benchmarks come out if you use this for your PDEP; it works on all CPUs: ``` inline uint64_t handPDEP_7F7F7F7F7F7F7F7F(uint64_t value) { // 1. Reshape value...
Could you clarify what problem this is solving for you?
> Implicit conversions are disabled by lint in my cef project Can you be more specific about where you're seeing these unwanted conversions? I'd like to avoid adding extra overloads...