We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
std::cell::Ref::map_split
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found myself needing to get from Ref<(A, B)> to a (Ref<A>, Ref<B>), with things like RefCell there is map_split.
Ref<(A, B)>
(Ref<A>, Ref<B>)
RefCell
map_split
Is similar things possible with dashmap?
The text was updated successfully, but these errors were encountered:
Add Ref/RefMut::map_split
c46e4af
Closes xacrimon#337
b70400c
9dca086
Successfully merging a pull request may close this issue.
I found myself needing to get from
Ref<(A, B)>
to a(Ref<A>, Ref<B>)
, with things likeRefCell
there ismap_split
.Is similar things possible with dashmap?
The text was updated successfully, but these errors were encountered: