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 unless value.nil? end
def method_missing(symbol, *args)
def method_missing(symbol, *args) key?(symbol) ? self[symbol] : super end
def respond_to?(symbol, include_private = false)
def respond_to?(symbol, include_private = false) key?(symbol) || super end