module Ronin::Support::Binary::CTypes::Arch::ARM::BigEndian
Represents the C types for the ARM
architecture, in big-endian mode.
Constants
Public Class Methods
Source
# File lib/ronin/support/binary/ctypes/arch/arm/big_endian.rb, line 70 def self.[](name) TYPES.fetch(name) do raise(ArgumentError,"unknown ARM (big-endian) type: #{name.inspect}") end end
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.