class BinData::Struct::Snapshot
:nodoc:
A hash that can be accessed via attributes.
def []=(key, value)
A hash that can be accessed via attributes.
def []=(key, value) super(key, value) unless value.nil? end
def method_missing(symbol, *args)
def method_missing(symbol, *args) self[symbol] || super end
def respond_to?(symbol, include_private = false)
def respond_to?(symbol, include_private = false) has_key?(symbol) || super end