Skip to content

Commit 14bb115

Browse files
committed
Auto merge of #87 - josephrocca:patch-1, r=Amanieu
Add simple usage code Show simple usage code for rust newbies like me
2 parents b240ee0 + 80dc544 commit 14bb115

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,13 @@ Add this to your `Cargo.toml`:
6565
hashbrown = "0.4"
6666
```
6767

68+
Then:
69+
70+
```rs
71+
use hashbrown::HashMap;
72+
let mut map = HashMap::new();
73+
```
74+
6875
This crate has the following Cargo features:
6976

7077
- `nightly`: Enables nightly-only features: `no_std` support and `#[may_dangle]`.

0 commit comments

Comments
 (0)