minivec 0.4.0

A version of Vec that's only the size of a single pointer
Documentation
use crate::MiniVec;

impl<T> core::hash::Hash for MiniVec<T>
where
  T: core::hash::Hash,
{
  fn hash<H>(&self, state: &mut H)
  where
    H: core::hash::Hasher,
  {
    let this: &[T] = &**self;
    core::hash::Hash::hash(this, state);
  }
}