Merges two sorted `Vec`s into a single sorted `Vec`. Consumes both inputs and produces a new vector whose length equals the sum of the two input lengths. This is the standard two-way merge used in merge sort, adapted here for `Vec` ownership.
(left: Vec<T>, right: Vec<T>)
source not stored for this graph (policy: none)
no test coverage detected