合并两个 Map
Map<K, V> merge(Map<K, V> other) { if (isNullOrEmpty()) { return other; } return {...this!, ...other}; }