Function struct_merge

Merges a from structure to another in a recursive manner

This function merges a from structure (array) to a to structure (array) in a recursive manner when values contain structures (arrays). At any level: 1) If two single structures are to be merged, the same fields in the to structure are overwritten by the fields in the from structure. Extract fields from the from structure are added to the to structure. 2) If one or both of the structures are arrays, they are concatenated in terms of their elements and merged in terms of their fields.

Credit: Dongxi Zheng (2014)

Input:

Output: