module Ronin::Support::Binary::CTypes::Arch::PPC
Represents the C types for the PPC
architecture.
Constants
Public Class Methods
[](name)
click to toggle source
Fetches the type from {TYPES}.
@param [Symbol] name
The type name to lookup.
@return [Type]
The type object from {TYPES}.
@raise [ArgumentError]
The type name was unknown.
# File lib/ronin/support/binary/ctypes/arch/ppc.rb, line 68 def self.[](name) TYPES.fetch(name) do raise(ArgumentError,"unknown PPC type: #{name.inspect}") end end