Array::Merge - merge two arrays, optionally with help of the base one
See merge_arrays function.
At times a list of values may evolve independently in two branches, then the need to merge two alternatives arises. This module helps.
$result_arr = merge_arrays($local_arr, $remote_arr, $base_arr);
The optional argument may be either array ref or string 'local' or string 'remote', in which case the base array is considered to be either the first or the second array.
* local list (array ref) * remote list (array ref) * optional base/original list (array ref)