Class: StructFu::Int64le
- Defined in:
- lib/packetfu/structfu.rb
Overview
Int64le is a eight 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) ⇒ Int64le
constructor
A new instance of Int64le.
Methods inherited from Int64
Methods inherited from Int
Methods inherited from Struct
Constructor Details
#initialize(v = nil, e = :little) ⇒ Int64le
Returns a new instance of Int64le.
190 191 192 |
# File 'lib/packetfu/structfu.rb', line 190 def initialize(v=nil, e=:little) super(v,e) end |