# Please define variables
packageName=<packageName>
packageVersion=<packageVersion>
# Create a new tab
brew tap-new local/$packageName
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class MapMerge { | |
| /** | |
| * Deeply merges the contents of each Map in sources, merging from | |
| * "right to left" and returning the merged Map. | |
| * | |
| * Mimics 'extend()' functions often seen in JavaScript libraries. | |
| * Any specific Map implementations (e.g. TreeMap, LinkedHashMap) | |
| * are not guaranteed to be retained. The ordering of the keys in |
