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
# Allows access to deep hashes by passing an array of keys, which will be used | |
# in a serial chain of hash key lookups. For example, the array: | |
# [:one, :two, :three] | |
# Would translate to the key structure: | |
# hash[:one][:two][:three] | |
# Usage: |