There was an error while loading. Please reload this page.
std::cell::Ref::map_split
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?