Mention that HashMap::new and HashSet::new do not allocate by jonhoo · Pull Request #44609 · rust-lang/rust (original) (raw)

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 andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Conversation4 Commits1 Checks0 Files changed

Conversation

This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters

[ Show hidden characters]({{ revealButtonHref }})

@jonhoo

The docs for HashMap::with_capacity and HashSet::with_capacity already say that

If capacity is 0, the hash map/set will not allocate.

However, the docs for ::new do not say that the initial capacity is 0, and thus promise that a call to ::new alone does not allocate. This PR fixes that.

@jonhoo

@rust-highfive

r? @dtolnay

(rust_highfive has picked a reviewer for you, use r? to override)

@jonhoo

@steveklabnik

@bors: r+ rollup

thanks a ton!

@bors

📌 Commit f7e974e has been approved by steveklabnik

frewsxcv added a commit to frewsxcv/rust that referenced this pull request

Sep 16, 2017

@frewsxcv

Mention that HashMap::new and HashSet::new do not allocate

The docs for HashMap::with_capacity and HashSet::with_capacity already say that

If capacity is 0, the hash map/set will not allocate. However, the docs for ::new do not say that the initial capacity is 0, and thus promise that a call to ::new alone does not allocate. This PR fixes that.

alexcrichton added a commit to alexcrichton/rust that referenced this pull request

Sep 16, 2017

@alexcrichton

Mention that HashMap::new and HashSet::new do not allocate

The docs for HashMap::with_capacity and HashSet::with_capacity already say that

If capacity is 0, the hash map/set will not allocate. However, the docs for ::new do not say that the initial capacity is 0, and thus promise that a call to ::new alone does not allocate. This PR fixes that.

alexcrichton added a commit to alexcrichton/rust that referenced this pull request

Sep 17, 2017

@alexcrichton

Mention that HashMap::new and HashSet::new do not allocate

The docs for HashMap::with_capacity and HashSet::with_capacity already say that

If capacity is 0, the hash map/set will not allocate. However, the docs for ::new do not say that the initial capacity is 0, and thus promise that a call to ::new alone does not allocate. This PR fixes that.

bors added a commit that referenced this pull request

Sep 17, 2017

@bors

Rollup of 19 pull requests

Labels

S-waiting-on-bors

Status: Waiting on bors to run and complete tests. Bors will change the label on completion.