Module: ModalSupport::BracketConstructor::ClassMethods
- Defined in:
- lib/modalsupport/mixins/bracket_constructor.rb
Instance Method Summary collapse
Instance Method Details
#[](*args) ⇒ Object
31 32 33 34 35 36 37 38 |
# File 'lib/modalsupport/mixins/bracket_constructor.rb', line 31 def [](*args) if args.size==1 arg = args.first return nil if arg.nil? return arg if arg.kind_of?(self) end self.new(*args) end |