Skip to content

Commit

Permalink
Document raw-api needed on methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
xacrimon committed Jan 15, 2020
1 parent 0a5746d commit ce56add
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@ impl<'a, K: 'a + Eq + Hash, V: 'a> DashMap<K, V> {
}

/// Allows you to peek at the inner shards that store your data.
/// You should probably not use this.
/// You should probably not use this unless you know what you are doing.
///
/// Requires the `raw-api` feature to be enabled.
///
/// # Examples
///
Expand All @@ -131,7 +133,9 @@ impl<'a, K: 'a + Eq + Hash, V: 'a> DashMap<K, V> {
}

/// Finds which shard a certain key is stored in.
/// You should probably not use this.
/// You should probably not use this unless you know what you are doing.
///
/// Requires the `raw-api` feature to be enabled.
///
/// # Examples
///
Expand Down

0 comments on commit ce56add

Please sign in to comment.