method

respond_to_missing?

respond_to_missing?(mid, include_private = false)
public

No documentation available.

# File lib/ostruct.rb, line 207
  def respond_to_missing?(mid, include_private = false) # :nodoc:
    mname = mid.to_s.chomp("=").to_sym
    @table&.key?(mname) || super
  end