Last active
September 8, 2019 19:33
-
-
Save rohitpaulk/d063f699bcff526170d0e901d253f52a to your computer and use it in GitHub Desktop.
NamedStruct
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class NamedStruct < Struct | |
| # Allows initialization via keyword arguments. By default, Ruby | |
| # only allows positional arguments. | |
| def initialize(**kwargs) | |
| super(*members.map{|k| kwargs[k] }) | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment