Function kcheck_utils::option_vector_append
source · 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