pub fn option_vector_append<T>(
    orig: Option<Vec<T>>,
    other: Option<Vec<T>>
) -> Option<Vec<T>>
Expand description

Take two Option<Vec<T>> and append the second to the first.

Returns the resulting Option<Vec<T>>. todo: this could probably be written in a more ergonomic way