Merge ranges of values from two sorted arrays.
an array
begin index in x
end index in x (exclusive)
another array
begin index in y
end index in y (exclusive)
compare function (a, b)
map function (v, i, x)
x[i:I] & y[j:J] | vᵢ ≤ vᵢ₊₁ ∀ i ∈ x[i:I] & y[j:J]
Generated using TypeDoc
Merge ranges of values from two sorted arrays.