You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since Extend is a trait, it requires mutable references, although DashMap and DashSet by themselves allow extending with shared references.
It would be nice to have a shorthand function that's equivalent to Extend, but only requires a shared reference. Or, maybe &DashMap and &DashSet could implement Extend, allowing you to bypass this restriction.
The text was updated successfully, but these errors were encountered:
Since
Extend
is a trait, it requires mutable references, althoughDashMap
andDashSet
by themselves allow extending with shared references.It would be nice to have a shorthand function that's equivalent to
Extend
, but only requires a shared reference. Or, maybe&DashMap
and&DashSet
could implementExtend
, allowing you to bypass this restriction.The text was updated successfully, but these errors were encountered: