class Ronin::Support::Binary::CTypes::Int8Type

Base class for all ‘int8_t` types.

Public Class Methods

new() click to toggle source

Initializes the integer type.

Calls superclass method
# File lib/ronin/support/binary/ctypes/int8_type.rb, line 33
def initialize
  super(signed: true, size: 1, endian: nil, pack_string: 'c')
end