Expand description
Tuning utility for smallvec
You can use this crate as a stand-in for smallvec to get a number of files you can use to decide on good smallvec sizes.
Use with extern crate smallvectune; use smallvectune::SmallVec instead
of extern crate smallvec; use smallvec::SmallVec.
Macros§
Structs§
- Drain
- An iterator that removes the items from a
SmallVecand yields them by value. - Into
Iter - An iterator that consumes a
SmallVecand yields its items by value. - Log
- Logger
- Small
Vec - Our wrapped SmalLVec type
Traits§
- Array
- Types that can be used as the backing store for a SmallVec
- Extend
From Slice - Trait to be implemented by a collection that can be extended from a slice
Functions§
- with_
log - Use this with
let _log = with_log();in your main method to flush the log and exit the logger thread on program exit