A proposal to add a `maps:merge/1` function to Erlang/OTP that accepts a list of maps (e.g., `maps:merge([A, B, C, D])`) instead of requiring nested calls like `maps:merge(A, maps:merge(B, maps:merge(C, D)))`. The motivation is both ergonomics and potential performance gains by avoiding intermediate allocations from nested
Sort: