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

Dramatically expand the docs of std::raw. #22218

Merged
merged 2 commits into from
Feb 16, 2015
Merged

Conversation

huonw
Copy link
Member

@huonw huonw commented Feb 12, 2015

This overhauls the very meager docs that currently exist to clarify
various understandable confusions that I've noticed, e.g. people look in
std::raw for the "real" types of slices like &[T], or think that
Slice<T> refers to [T] (fixes #22214).

This patch takes the liberty of offering some "style" guidance around
raw::Slice, since there's more restricted ways to duplicate all
functionality connected to it: std::slice::from_raw_parts{,_mut} for
construction and .as_{,mut_}ptr & .len for deconstruction.

It also deprecates the std::raw::Closure type which is now useless for
non-type-erased closures, and replaced by TraitObject for &Fn, &mut FnMut etc, so I guess it should be called a:

[breaking-change]

@huonw
Copy link
Member Author

huonw commented Feb 12, 2015

r? @steveklabnik

@rust-highfive
Copy link
Contributor

r? @nikomatsakis

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

///
/// - Creating a slice from a data pointer and length can be done with
/// `std::slice::from_raw_parts` or `std::slice::from_raw_parts_mut`
/// than with `std::mem::transmute` on a value of type `Slice`.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"rather than"?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks like a double space after transmute too

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This sentence was refactored too many times, and there's no compiler to catch mistakes.

💔 english

@Gankra
Copy link
Contributor

Gankra commented Feb 12, 2015

Content-wise this is a great improvement. Although it makes me wonder: why would anyone use anything in here? Is it just for writing the nicer abstractions in libcore and rustc? Should we state this?

@huonw
Copy link
Member Author

huonw commented Feb 13, 2015

I tried to do that with Slice, but TraitObject needs it; afaik, there's no way we can provide a nicer abstraction atm (that's not to say we can't ever provide such an abstraction).

@Gankra
Copy link
Contributor

Gankra commented Feb 13, 2015

Yeah I figured as much. r=me unless you still want steve's feedback.

@steveklabnik
Copy link
Member

why would anyone use anything in here?

IIRC, these things are transmute targets?

@@ -21,7 +21,40 @@
use marker::Copy;
use mem;

/// The representation of a Rust slice
/// The representation of a Rust slice.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"Rust" is redundant here.

@steveklabnik
Copy link
Member

r=me after those few nits

@bluss
Copy link
Member

bluss commented Feb 13, 2015

If you want to, you can grab this commit to fix the Repr trait to be unsafe on top of your change.

git fetch https://github.com/bluss/rust repr-unsafe

huonw and others added 2 commits February 14, 2015 11:32
This overhauls the very meager docs that currently exist to clarify
various understandable confusions that I've noticed, e.g. people look in
`std::raw` for the "real" types of slices like `&[T]`, or think that
`Slice<T>` refers to `[T]` (fixes rust-lang#22214).

This patch takes the liberty of offering some "style" guidance around
`raw::Slice`, since there's more restricted ways to duplicate all
functionality connected to it: `std::slice::from_raw_parts{,_mut}` for
construction and `.as_{,mut_}ptr` & `.len` for deconstruction.

It also deprecates the `std::raw::Closure` type which is now useless for
non-type-erased closures, and replaced by `TraitObject` for `&Fn`, `&mut
FnMut` etc, so I guess it should be called a:

[breaking-change]
The default implementation of .repr() will call conveniently call
transmute_copy which should be appropriate for all implementors, but is
memory unsafe if used wrong.

Fixes rust-lang#22260

You need to use `unsafe impl` to implement the Repr trait now.

[breaking-change]
@huonw
Copy link
Member Author

huonw commented Feb 14, 2015

@bors r=steveklabnik,huonw 7a52 rollup

Thanks @bluss.

steveklabnik added a commit to steveklabnik/rust that referenced this pull request Feb 14, 2015
This overhauls the very meager docs that currently exist to clarify
various understandable confusions that I've noticed, e.g. people look in
`std::raw` for the "real" types of slices like `&[T]`, or think that
`Slice<T>` refers to `[T]` (fixes rust-lang#22214).

This patch takes the liberty of offering some "style" guidance around
`raw::Slice`, since there's more restricted ways to duplicate all
functionality connected to it: `std::slice::from_raw_parts{,_mut}` for
construction and `.as_{,mut_}ptr` & `.len` for deconstruction.
steveklabnik added a commit to steveklabnik/rust that referenced this pull request Feb 15, 2015
This overhauls the very meager docs that currently exist to clarify
various understandable confusions that I've noticed, e.g. people look in
`std::raw` for the "real" types of slices like `&[T]`, or think that
`Slice<T>` refers to `[T]` (fixes rust-lang#22214).

This patch takes the liberty of offering some "style" guidance around
`raw::Slice`, since there's more restricted ways to duplicate all
functionality connected to it: `std::slice::from_raw_parts{,_mut}` for
construction and `.as_{,mut_}ptr` & `.len` for deconstruction.

It also deprecates the `std::raw::Closure` type which is now useless for
non-type-erased closures, and replaced by `TraitObject` for `&Fn`, `&mut
FnMut` etc, so I guess it should be called a:

[breaking-change]
Manishearth added a commit to Manishearth/rust that referenced this pull request Feb 15, 2015
This overhauls the very meager docs that currently exist to clarify
various understandable confusions that I've noticed, e.g. people look in
`std::raw` for the "real" types of slices like `&[T]`, or think that
`Slice<T>` refers to `[T]` (fixes rust-lang#22214).

This patch takes the liberty of offering some "style" guidance around
`raw::Slice`, since there's more restricted ways to duplicate all
functionality connected to it: `std::slice::from_raw_parts{,_mut}` for
construction and `.as_{,mut_}ptr` & `.len` for deconstruction.

It also deprecates the `std::raw::Closure` type which is now useless for
non-type-erased closures, and replaced by `TraitObject` for `&Fn`, `&mut
FnMut` etc, so I guess it should be called a:

[breaking-change]
@bors bors merged commit 7a52932 into rust-lang:master Feb 16, 2015
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.

std:.raw::Slice doc is not precise enough
7 participants