]> git.lizzy.rs Git - rust.git/commitdiff
Add Random state doc
authorggomez <guillaume1.gomez@gmail.com>
Fri, 22 Jul 2016 12:57:52 +0000 (14:57 +0200)
committerggomez <guillaume1.gomez@gmail.com>
Fri, 22 Jul 2016 12:57:52 +0000 (14:57 +0200)
src/libstd/collections/hash/map.rs

index 60d7e01d98814a99dc61c725a6fd97c09713c7e2..d4b09807e749b1b2eddf3f1f78196cef1fd0c3b9 100644 (file)
@@ -1666,6 +1666,17 @@ fn extend<T: IntoIterator<Item=(&'a K, &'a V)>>(&mut self, iter: T) {
 /// A particular instance `RandomState` will create the same instances of
 /// `Hasher`, but the hashers created by two different `RandomState`
 /// instances are unlikely to produce the same result for the same values.
+///
+/// # Examples
+///
+/// ```
+/// use std::collections::HashMap;
+/// use std::collections::hash_map::RandomState;
+///
+/// let s = RandomState::new();
+/// let mut map = HashMap::with_hasher(s);
+/// map.insert(1, 2);
+/// ```
 #[derive(Clone)]
 #[stable(feature = "hashmap_build_hasher", since = "1.7.0")]
 pub struct RandomState {
@@ -1675,6 +1686,14 @@ pub struct RandomState {
 
 impl RandomState {
     /// Constructs a new `RandomState` that is initialized with random keys.
+    ///
+    /// # Examples
+    ///
+    /// ```
+    /// use std::collections::hash_map::RandomState;
+    ///
+    /// let s = RandomState::new();
+    /// ```
     #[inline]
     #[allow(deprecated)] // rand
     #[stable(feature = "hashmap_build_hasher", since = "1.7.0")]