-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Conversation
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. |
cc @oli-obk r? @alexcrichton |
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 |
Is it fundamentally impossible to create a const rust/src/libcore/intrinsics.rs Line 1602 in d28a9c3
memset const?
|
You can create an empty string / vector but not one which has allocated, so you'll always get |
There were also concerns about uniformity in the previous PR #55278 (comment) |
So just for my own understanding, a const function cannot allocate memory? 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); |
Not yet, but there are plans. |
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. |
There is no reason anymore. I just thought it was weird, that len wasn't |
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. |
No description provided.