8000 Re-export hashbrown with the "raw-api" feature by DaniPopes · Pull Request #344 · xacrimon/dashmap · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Re-export hashbrown with the "raw-api" feature #344

New issue

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/lib.rs
8000
Original file line number Diff line numberDiff line change
Expand Up @@ -24,21 +24,24 @@ pub mod rayon {

#[cfg(not(feature = "raw-api"))]
use crate::lock::RwLock;

#[cfg(feature = "raw-api")]
pub use crate::lock::{RawRwLock, RwLock};

use crate::mapref::entry_ref::EntryRef;
use crate::mapref::entry_ref::OccupiedEntryRef;
use crate::mapref::entry_ref::VacantEntryRef;

#[cfg(feature = "raw-api")]
pub use hashbrown;
use hashbrown::hash_table;

use cfg_if::cfg_if;
use core::fmt;
use core::hash::{BuildHasher, Hash, Hasher};
use core::iter::FromIterator;
use core::ops::{BitAnd, BitOr, Shl, Shr, Sub};
use crossbeam_utils::CachePadded;
pub use equivalent::Equivalent;
use hashbrown::hash_table;
use iter::{Iter, IterMut, OwningIter};
use lock::{RwLockReadGuardDetached, RwLockWriteGuardDetached};
pub use mapref::entry::{Entry, OccupiedEntry, VacantEntry};
Expand Down
0