←back to thread

3883 points kuroguro | 1 comments | | HN request time: 0.202s | source
Show context
raggi ◴[] No.26297165[source]
Spicy hot take: the root cause here is the awful c++ library ecosystem.
replies(1): >>26301091 #
steerablesafe ◴[] No.26301091[source]
Yeah no. While the C++ library ecosystem is painful to use, it still doesn't justify hand-rolling a JSON parser and there are certainly high quality hash-based container implementations available too, but even the standard one should beat the one used here.
replies(1): >>26305772 #
waprin ◴[] No.26305772[source]
But there is no "standard one"...reaffirming the point that you disagreed with. C++ standard library is blatantly missing key pieces given how long the language been around.
replies(1): >>26313802 #
1. steerablesafe ◴[] No.26313802[source]
Are you arguing that there are no standard hash-based containers in the standard library of C++? Because there definitely are, even though nowadays there often are better alternatives outside the standard library.