Skip to content
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

constify len and is_empty functions of string and vec #65341

Closed
wants to merge 1 commit into from
Closed

constify len and is_empty functions of string and vec #65341

wants to merge 1 commit into from

Conversation

Luro02
Copy link
Contributor

@Luro02 Luro02 commented Oct 12, 2019

No description provided.

@rust-highfive
Copy link
Contributor

Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @shepmaster (or someone else) soon.

If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes.

Please see the contribution instructions for more information.

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Oct 12, 2019
@Centril
Copy link
Contributor

Centril commented Oct 12, 2019

cc @oli-obk r? @alexcrichton

@Centril Centril added needs-fcp This change is insta-stable, so needs a completed FCP to proceed. relnotes Marks issues that should be documented in the release notes of the next release. labels Oct 12, 2019
@Centril Centril added this to the 1.40 milestone Oct 12, 2019
@Centril Centril added the T-libs-api Relevant to the library API team, which will review and decide on the PR/issue. label Oct 12, 2019
@oli-obk
Copy link
Contributor

oli-obk commented Oct 13, 2019

Iirc we had a PR for this before and closed it because you can't use these because you can't really create constant strings

@Luro02
Copy link
Contributor Author

Luro02 commented Oct 14, 2019

Is it fundamentally impossible to create a const String/Vec or just not possible right now? I looked a bit through the function calls and landed at

pub unsafe fn write_bytes<T>(dst: *mut T, val: u8, count: usize) {
, which seems to be some external function? So does this mean, that you can't make a memset const?

@Centril
Copy link
Contributor

Centril commented Oct 14, 2019

You can create an empty string / vector but not one which has allocated, so you'll always get .is_empty() == true which isn't very exciting. That said, it seems obvious to me that we will want these to be const eventually so I don't personally mind the order in which we stabilize.

@memoryruins
Copy link
Contributor

There were also concerns about uniformity in the previous PR #55278 (comment)

@Luro02
Copy link
Contributor Author

Luro02 commented Oct 14, 2019

So just for my own understanding, a const function cannot allocate memory?
For example this could be quite useful:

const fn takes_string(value: String) -> usize {
     value.len() + 420 / 10
} // the size of value is already known, therfore it can be const?

let mut string = String::new();
string.push_str("Hello");

takes_string(string);

@Centril
Copy link
Contributor

Centril commented Oct 14, 2019

So just for my own understanding, a const function cannot allocate memory?

Not yet, but there are plans.

@alexcrichton
Copy link
Member

Is there a clear use case that this is enabling at this time? If not I would personally prefer to lean on the side of not merging this at this time.

@Luro02
Copy link
Contributor Author

Luro02 commented Oct 16, 2019

There is no reason anymore. I just thought it was weird, that len wasn't const, because it just returns a number/variable.

@alexcrichton
Copy link
Member

Ok in that case I'm gonna go ahead and close this, and we can reconsider once these can be useful in a const context.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs-fcp This change is insta-stable, so needs a completed FCP to proceed. relnotes Marks issues that should be documented in the release notes of the next release. S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants