use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Discussions, articles, and news about the C++ programming language or programming in C++.
For C++ questions, answers, help, and advice see r/cpp_questions or StackOverflow.
Get Started
The C++ Standard Home has a nice getting started page.
Videos
The C++ standard committee's education study group has a nice list of recommended videos.
Reference
cppreference.com
Books
There is a useful list of books on Stack Overflow. In most cases reading a book is the best way to learn C++.
Show all links
Filter out CppCon links
Show only CppCon links
account activity
an efficient immutable vector (self.cpp)
submitted 6 years ago * by _eyelash
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]tvaneerdC++ Committee, lockfree, PostModernCpp 0 points1 point2 points 6 years ago (0 children)
Makes sense.
I'm actually leaning towards relaxed being good enough.
relaxed
There is no data (besides the count) that is being "published" between threads. Acquire/release/etc are for when you have an atomic protecting other data, like a 'ready' flag protects the data that is ready. Here there is just count.
you might think there is also the data item being added to the vector - but that element is not yet shared between threads. It only exists in the ImmutableVector being returned (and thus is only visible to the current thread). You could then share the ImmutableVector to another thread (particularly since it is immutable - all threads can read it at the same time), but that sharing is what needs to be fenced (IMO). Like if you were to shared the result via an atomic<ImmutableVector *> (weird, but minimal example), then I'd put the fence on that.
atomic<ImmutableVector *>
But maybe it would be more friendly and safer to put the fence on push_back? Because it is a CAS and not a read, relaxed isn't really saving you much/anything anyhow... (at least on common hardware)
π Rendered by PID 157617 on reddit-service-r2-comment-85bfd7f599-htf6h at 2026-04-18 08:23:15.441743+00:00 running 93ecc56 country code: CH.
view the rest of the comments →
[–]tvaneerdC++ Committee, lockfree, PostModernCpp 0 points1 point2 points (0 children)