docs.rs failed to build smallvec-1.15.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
smallvec-2.0.0-alpha.12
rust-smallvec
"Small vector" optimization for Rust: store up to a small number of items on the stack
Example
use ;
// This SmallVec can hold up to 4 items on the stack:
let mut v: = smallvec!;
// It will automatically move its contents to the heap if
// contains more than four items:
v.push;
// SmallVec points to a slice, so you can use normal slice
// indexing and other methods to access its contents:
v = v + v;
v.sort;