class Must::StructInfo

Public Class Methods

new(obj) click to toggle source

StructInfo

# File lib/must/struct_info.rb, line 81
def initialize(obj)
  @obj = obj
end

Public Instance Methods

compact() click to toggle source
# File lib/must/struct_info.rb, line 89
def compact
  Browser.compact(@obj)
end
inspect() click to toggle source
# File lib/must/struct_info.rb, line 97
def inspect
  compact.inspect
end
same?(dst) click to toggle source
# File lib/must/struct_info.rb, line 93
def same?(dst)
  Browser.same?(@obj, dst)
end
types() click to toggle source
# File lib/must/struct_info.rb, line 85
def types
  Browser.types(@obj)
end