<snip>
I'd rather have a class or instance level method that let me define this
behavior globally for all hashes, or locally for instances. That way I
can keep the standard aref syntax, e.g. arg[:key] instead of using a
separate method name. I wouldn't mind a way to ignore case, either.
h = {'foo', 1, 'BAR', 2}
h.symbol_alias = true # or whatever
h.ignore_key_case = true # or whatever
h['foo'] # 1
h[:foo] # 1
h["FOO"] # 1
h['bar'] # 2
... etc, etc.
That being said, I'll take a Hash#getopt method over nothing.
Regards,
Dan
This communication is the property of Qwest and may contain confidential or
privileged information. Unauthorized use of this communication is strictly
prohibited and may be unlawful. If you have received this communication
in error, please immediately notify the sender by reply e-mail and destroy
all copies of the communication and any attachments.
···
-----Original Message-----
From: ara.t.howard@noaa.gov [mailto:ara.t.howard@noaa.gov]
Sent: Monday, April 24, 2006 9:17 PM
To: ruby-talk ML
Subject: [RCR] Hash#getoptat this point calls of the form
some_method arg, "key" => "value"
or
some_method arg, :key=>:value
are idiomatic ruby. let's just support it directly and be
done with it: