Used to merge the sorted lists List1 and List2 to give the sorted list List3.
If List1 and List2 are not lists of compound terms, use Key = 0.
If List1 and List2 are lists of compound terms, then the sort will be according to the Keyth argument of the lists' elements. The Keyth argument of the list elements must be a numeric term.
For two lists [e1,e2,e3] and [f1,f2,f3], e1 is compared to f1. The resulting element (dictated by Key, Order and numerical ordering, with ties being resolved in favour of the element from List1) is put into List3, and the process continued with the remaining input lists. This process continues until both lists are exhausted.
In particular, this will merge two sorted lists into a sorted list. The merge is stable, i.e. the order of elements with equal keys is preserved. If List1 and List2 contains elements with identical keys, List1's elements will occur first in List3.
In all cases where List1 and List2 are sorted, Order specifies whether the lists are sorted into ascending (<, =<) or descending (>, >=) order and whether duplicates are to be retained (=<, >=) or eliminated (<, >). The way to remember the Order argument is that it is the relation which holds between adjacent elements in the result.
The sort is done according to numerical ordering of terms as opposed to merge/5 which uses the standard ordering of terms. See number_sort/4 for a discussion of the differences between numerical and standard ordering of numeric types.
Success: number_merge(0,<,[2,4,6],[1,3,5],L). (gives L=[1,2,3,4,5,6]). number_merge(1,>,[f(8),f(6)],[f(4),f(1)],L). (gives L=[f(8),f(6),f(4),f(1)]). number_merge(2,<,[f(2,1),f(6,4)],[f(6,3),f(8,6)],L). (gives L=[f(2,1),f(6,3),f(6,4),f(8,6)]). number_merge(2,<,[q(2,1),f(6,4)],[a(6,3),i(8,6)],L). (gives L=[q(2,1),a(6,3),f(6,4),i(8,6)]). number_merge(0,=<,[1,2],[3,4,4,5],L). (gives L=[1,2,3,4,4,5]). number_merge([2,1], =<, [f(1,a(1)), f(0,a(3))], [f(3,a(2)), f(1,a(4))], L). (gives L=[f(1,a(1)), f(3,a(2)), f(0,a(3)), f(1,a(4))]). Fail: number_merge(0,<,[2,4,6],[1,3,5],[1,2,3,4,5]). Error: number_merge(0,>,[1],[Q,2],L). (Error 4). number_merge(1,<,[f(1,2),f],[f(3,4),h(1,2)],L). (Error 5). number_merge(0.0,<,[f(1)],[f(2)],L). (Error 5). number_merge(0,<,[f(1),f(7)],[f(8),f(10)],L). (Error 5). number_merge(0,>,[1,e,q],[2],L). (Error 5). number_merge(2,<,[f(1,2)],[f(8)],L). (Error 6).