class BinData::Struct::Snapshot

:nodoc:
A hash that can be accessed via attributes.

def []=(key, value)

:nodoc:
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_missing?(symbol, include_all = false)

def respond_to_missing?(symbol, include_all = false)
  key?(symbol) || super
end