Closed vorner closed 5 years ago
Hey @vorner , thank you for opening your project at GoodFirstIssues; I'm reading/studying a bit around the topic of concurrent data structures and I hope to get more understanding starting with some small contribution.
I still have to properly get into the details of the paper that you linked and of your implementation; needless to say it's already quite interesting.
There is some work-in-progress in #4; any comment is more than welcome and feel free to drop there any consideration. Thanks in advance.
You're welcome, I'll be glad to get some contributions :-).
As for studying, few notes:
I'll get around to looking at the code soon, but I won't promise it'll be today (maybe, maybe not).
OK, this seems to be completed, so closing.
If anyone is looking for further easy tasks, I'll make sure to get around to creating few more soon.
The master already contain the
ConSet
type, with basic set of methods. However, two things are missing:Extend
,.iter
,IntoIter
for reference andFromIter
).The
ConSet
type is very similar to theConMap
one, so the implementations of the above will end up being similar too. Few notable things:Extend
andFromIter
work both on tuples(K, V)
and preparedArc<Element>
s. The set has no such thing, they would simply takeT
directly.If considering working on this, please write a comment to claim the issue (and specify if you want to tackle both or only one of the subtasks). It is fine to put into review in parts as smaller pull requests or as one bigger, as you prefer.
Don't hesitate to ask if you have any questions or want some help.