impl<C: Component> Arena<C> {
pub const fn new() -> Self where C::Alloc: ConstDefault {
Self::new_in(ConstDefault::DEFAULT)
}
pub fn with_capacity(capacity: usize) -> Self where C::Alloc: ConstDefault {
Self::with_capacity_in(capacity, ConstDefault::DEFAULT)
}
}