Class: PacketGen::Types::SInt32le
- Defined in:
- lib/packetgen/types/int.rb
Overview
little endian 4-byte unsigned integer
Instance Attribute Summary
Attributes inherited from Int
#default, #endian, #value, #width
Instance Method Summary collapse
-
#initialize(value = nil) ⇒ SInt32le
constructor
A new instance of SInt32le.
Methods inherited from Int
#format_inspect, #nbits, #read, #sz, #to_f, #to_i, #to_s
Methods included from Fieldable
#format_inspect, #read, #sz, #to_human, #to_s, #type_name
Constructor Details
#initialize(value = nil) ⇒ SInt32le
Returns a new instance of SInt32le.
368 369 370 |
# File 'lib/packetgen/types/int.rb', line 368 def initialize(value=nil) super(value, :little) end |