A load command containing the offset and number of hints in the two-level namespace lookup hints table. Corresponds to LC_TWOLEVEL_HINTS.
@see MachOStructure::FORMAT @api private
@see MachOStructure::SIZEOF @api private
@return [Fixnum] the offset to the hint table
@return [Fixnum] the number of hints in the hint table
@return [TwolevelHintsTable]
the hint table
@api private
# File lib/macho/load_commands.rb, line 887 def initialize(view, cmd, cmdsize, htoffset, nhints) super(view, cmd, cmdsize) @htoffset = htoffset @nhints = nhints @table = TwolevelHintsTable.new(view, htoffset, nhints) end