class MachO::LoadCommands::TwolevelHintsCommand::TwolevelHintsTable::TwolevelHint

An individual two-level namespace lookup hint.

Attributes

isub_image[R]

@return [Fixnum] the index into the sub-images

itoc[R]

@return [Fixnum] the index into the table of contents

Public Class Methods

new(blob) click to toggle source

@param blob [Fixnum] the 32-bit number containing the lookup hint @api private

# File lib/macho/load_commands.rb, line 922
def initialize(blob)
  @isub_image = blob >> 24
  @itoc = blob & 0x00FFFFFF
end