Clarify transmute example
This commit is contained in:
parent
548e14b439
commit
fb65ca14b2
@ -1356,7 +1356,7 @@ pub const fn unlikely(b: bool) -> bool {
|
|||||||
/// let v_clone = v_orig.clone();
|
/// let v_clone = v_orig.clone();
|
||||||
///
|
///
|
||||||
/// // This is the suggested, safe way.
|
/// // This is the suggested, safe way.
|
||||||
/// // It does copy the entire vector, though, into a new array.
|
/// // It may copy the entire vector into a new one though, but also may not.
|
||||||
/// let v_collected = v_clone.into_iter()
|
/// let v_collected = v_clone.into_iter()
|
||||||
/// .map(Some)
|
/// .map(Some)
|
||||||
/// .collect::<Vec<Option<&i32>>>();
|
/// .collect::<Vec<Option<&i32>>>();
|
||||||
|
Loading…
Reference in New Issue
Block a user