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

Added function to cast &[u8] to &str #5823

Merged
merged 2 commits into from
Apr 11, 2013

Conversation

Kimundi
Copy link
Member

@Kimundi Kimundi commented Apr 10, 2013

Added str::from_bytes_with_null
Added str::subslice_offset
Misc cleanup

Closes #5422

@erickt
Copy link
Contributor

erickt commented Apr 10, 2013

Instead of having str::from_bytes_owned, could we instead change str::from_bytes to return a &str, and use s.to_owned() to get a ~str?

@Kimundi
Copy link
Member Author

Kimundi commented Apr 10, 2013

@erickt : That was the plan, but sadly the semantic of from_str_owned and from_str_slice is different.
from_str_owned doesn't require a trailing 0 byte in the vector slice, but adds one to the new string, while from_str_slice wants a vector slice that's one byte longer so that if an trailing zero exists, it's part of the string.

@Kimundi
Copy link
Member Author

Kimundi commented Apr 10, 2013

Don't r+ yet, need to push a fix first.

EDIT: Ready now

Kimundi added 2 commits April 11, 2013 00:36
Added str::subslice_offset()
Renamed slice_bytes_uniqe to slice_bytes_owned
@Kimundi
Copy link
Member Author

Kimundi commented Apr 11, 2013

The debug-info tests failed, apparently. Strange, doesn't have anything to do with my code?

@asb
Copy link

asb commented Apr 11, 2013

@Kimundi it's the recent LLVM upgrade.

bors added a commit that referenced this pull request Apr 11, 2013
Added str::from_bytes_with_null
Added str::subslice_offset
Misc cleanup

Closes #5422
@bors bors closed this Apr 11, 2013
@bors bors merged commit 4ad76e6 into rust-lang:incoming Apr 11, 2013
flip1995 pushed a commit to flip1995/rust that referenced this pull request Sep 10, 2020
improve the suggestion of the lint `unit-arg`

Fixes rust-lang#5823
Fixes rust-lang#6015

Changes
```
help: move the expression in front of the call...
  |
3 |     g();
  |
help: ...and use a unit literal instead
  |
3 |     o.map_or((), |i| f(i))
  |
```
into
```
help: move the expression in front of the call and replace it with the unit literal `()`
  |
3 |     g();
  |     o.map_or((), |i| f(i))
  |
```
changelog: improve the suggestion of the lint `unit-arg`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants