We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The documentation for DashMap::remove_if says
DashMap::remove_if
Removes an entry from the map, returning the key and value if the entry existed and the provided conditional function returned true.
This could be interpreted in two ways:
Reading the code:
dashmap/src/lib.rs
Lines 991 to 996 in f2d248e
it's clear that the latter is the approach actually implemented, but it shouldn't be necessary to look into the code for this.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The documentation for
DashMap::remove_if
saysThis could be interpreted in two ways:
Reading the code:
dashmap/src/lib.rs
Lines 991 to 996 in f2d248e
it's clear that the latter is the approach actually implemented, but it shouldn't be necessary to look into the code for this.
The text was updated successfully, but these errors were encountered: