pub fn push_box<T>(container: &mut Box<[T]>, value: T)
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.
value
Box<[T]>
Vec<T>