File: 05_key_hash.rdoc

package info (click to toggle)
ruby-hashery 2.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 404 kB
  • sloc: ruby: 2,997; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 376 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
= KeyHash

The KeyHash is essentially the same as regular Hash but instead
of a `default_proc` the initializer takes the `key_proc` for
normalizing keys.

   kh = KeyHash.new{ |k| k.to_s.upcase }
   kh[:a] = 1
   kh.to_h  #=> ({'A'=>1})

By default, when no `key_proc` is given, it converts all keys to strings.

   kh = KeyHash.new
   kh[:a] = 1
   kh.to_h  #=> ({'a'=>1})