class KeywordStruct

Public Class Methods

new(**kwargs) click to toggle source
Calls superclass method
# File lib/keyword_struct.rb, line 2
def initialize(**kwargs)
  super(*members.map{|k| kwargs[k] })
end