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