Class: StructFu::Int64le

Inherits:
Int64 show all
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

Methods inherited from Int64

#to_s

Methods inherited from Int

#read, #to_f, #to_i, #to_s

Methods inherited from Struct

#force_binary

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