mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
Remove SmallVector mention
SmallVector is long gone, as it's been first replaced by OneVector in commite5e6375352
, which then has been removed entirely in favour of SmallVec in commit130a32fa72
.
This commit is contained in:
parent
47ab5f7ce2
commit
d84a39b35a
@ -2,7 +2,7 @@ use crate::stable_hasher::{HashStable, StableHasher};
|
||||
|
||||
use std::iter::FromIterator;
|
||||
|
||||
/// A vector type optimized for cases where this size is usually 0 (cf. `SmallVector`).
|
||||
/// A vector type optimized for cases where this size is usually 0 (cf. `SmallVec`).
|
||||
/// The `Option<Box<..>>` wrapping allows us to represent a zero sized vector with `None`,
|
||||
/// which uses only a single (null) pointer.
|
||||
#[derive(Clone, Encodable, Decodable, Debug)]
|
||||
|
Loading…
Reference in New Issue
Block a user