module Ronin::Support::Binary::CTypes::Arch::PPC64
Represents the C types for the PPC64
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/ppc64.rb, line 68 def self.[](name) self::TYPES.fetch(name) do raise(ArgumentError,"unknown PPC64 type: #{name.inspect}") end end