class Ronin::Support::Binary::CTypes::UInt8Type
Base class for all ‘uint8_t` types.
Public Class Methods
new()
click to toggle source
Initializes the integer type.
Calls superclass method
# File lib/ronin/support/binary/ctypes/uint8_type.rb, line 33 def initialize super(signed: false, size: 1, endian: nil, pack_string: 'C') end