pub fn append_box<T>(container: &mut Box<[T]>, other: &mut Vec<T>)
Append other to 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.
other
Box<[T]>
Vec<T>