Function push_box

Source
pub fn push_box<T>(container: &mut Box<[T]>, value: T)
Expand description

Push value onto the end of Box<[T]>. Convenience function for clients that work with cm_rust, which uses Box<[T]> instead of Vec<T> for its list type.