Accessor methods for the hash class.
hash-accessors.RdR style accesors for the hash-class.
Details
These are the hash accessor methods. They closely follow an R style.
$ is a look-up operator for a single key. The native $
method is used. The key is taken as a string literal and is not
interpreted.
[[ is the look-up, extraction operator. It returns the values of
a single key.
[ is a subseting operator. It returns a (sub) hash with the specified
keys. All other keys are removed.