Class: StructFu::Int32le
- Defined in:
- lib/packetfu/structfu.rb
Overview
Int32le is a four byte value in little-endian format. The endianness cannot be altered.
Instance Attribute Summary
Attributes inherited from Int
#default, #endian, #value, #width
Instance Method Summary collapse
-
#initialize(v = nil, e = :little) ⇒ Int32le
constructor
A new instance of Int32le.
Methods inherited from Int32
Methods inherited from Int
Methods inherited from Struct
Constructor Details
#initialize(v = nil, e = :little) ⇒ Int32le
Returns a new instance of Int32le.
163 164 165 |
# File 'lib/packetfu/structfu.rb', line 163 def initialize(v=nil, e=:little) super(v,e) end |