1 2 3 4 5 6 7 8 9
use crate::fat::*; use crate::meta::*; use crate::vec::AVec; impl<T, A: Free + Alloc + Default + ZstInfalliableOrGlobalOomHandling> Default for AVec<T, A> { fn default() -> Self { Self::new() } } // Don't bother with `try_default` / `try_default_in` / `default_in`: these would just alias `try_new` / `try_new_in` / `new_in`