Contents:
Merges data1 and data2 and returns the combined result.
data1
data2
data1 and data2 must be of the same type. Either both are dict, list or anything else.
dict
list
data1 (list[Any] | dict[str, Any] | Any) -- First data blob
data2 (list[Any] | dict[str, Any] | Any) -- Second data blob
Combined data blob
list[Any] | dict[str, Any] | Any