Merge a table with entries for "lunch" and "dessert", overriding the latter.
>
|
|
| (1) |
Merge using union as the merge operation.
>
|
|
| (2) |
Merge using concatenation as the merge operation.
>
|
|
| (3) |
Merge using concatenation, but using a custom delimiter as a 4th argument.
>
|
cat_delim := proc(x,y,delim) cat(x, delim, y) end proc:
|
>
|
|
| (4) |
Merge a table with symmetric indexing with one with ordinary indexing.
>
|
|
| (5) |
>
|
|
| (6) |
| (7) |
Merge a list of equations with another list of equations.
>
|
|
| (9) |
>
|
|
| (10) |
| (11) |