class PacketGen::Types::SInt32le

little endian 4-byte unsigned integer @author Sylvain Daubert @since 2.8.2

Public Class Methods

new(value=nil) click to toggle source

@param [Integer, nil] value

Calls superclass method PacketGen::Types::SInt32::new
# File lib/packetgen/types/int.rb, line 299
def initialize(value=nil)
  super(value, :little)
end