Class: Hash
- Inherits:
-
Object
- Object
- Hash
- Defined in:
- lib/aladdin/support/core_ext/hash.rb
Overview
Direct Known Subclasses
Instance Method Summary collapse
-
#to_struct ⇒ Struct
Returns a struct representation of the receiver.
Instance Method Details
#to_struct ⇒ Struct
Returns a struct representation of the receiver.
7 8 9 |
# File 'lib/aladdin/support/core_ext/hash.rb', line 7 def to_struct Struct.new( *(k = keys) ).new( *values_at( *k ) ) end |