资源介绍
导航哈希
NavigableHash 被构建为使用熟悉的 ruby 点表示法在散列或数组对象中导航的轻量级和快速方法。 有关示例,请参见下面的“用法”。 作为字符串或符号的键无关紧要,都包括在内。
安装
将此行添加到应用程序的 Gemfile 中:
gem 'navigable_hash'
然后执行:
$ bundle
或者自己安装:
$ gem install navigable_hash
用法
(查看覆盖示例的 rspec 测试)
最基本的用法:
test_hash = { :example_key => 'example value' }
navigable_hash = NavigableHash . new ( test_hash )
navigable_hash . example_key
# => 'example_value'
更多的:
new