Method: Xqsr3::HashUtilities::DeepTransform#deep_transform

Defined in:
lib/xqsr3/hash_utilities/deep_transform.rb

#deep_transform(&block) ⇒ Object

Executes the given mandatory 1- or 2-parameter block on the receiving instance, which must be a Hash or a type that responds to the map message, returning a copy of the instance in which keys (1-parameter block) or keys and values (2-parameter block) are transformed.



133
134
135
136
# File 'lib/xqsr3/hash_utilities/deep_transform.rb', line 133

def deep_transform &block

  DeepTransform.do_deep_transform_on_hashlike_(self, &block)
end