Class: BinStruct::SInt64

Inherits:
Int64 show all
Defined in:
lib/bin_struct/int.rb

Overview

8-byte signed integer

Author:

  • LemonTree55

Direct Known Subclasses

SInt64be, SInt64le, SInt64n

Instance Attribute Summary

Attributes inherited from Int

#default, #endian, #value, #width

Instance Method Summary collapse

Methods inherited from Int

#format_inspect, #from_human, #nbits, #read, #sz, #to_f, #to_i, #to_s

Methods included from Structable

#format_inspect, #read, #sz, #to_human, #to_s, #type_name

Constructor Details

#initialize(options = {}) ⇒ SInt64

Returns a new instance of SInt64.

Parameters:

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :value (Integer)
  • :endian (:big, :little, :native)


458
459
460
461
462
# File 'lib/bin_struct/int.rb', line 458

def initialize(options = {})
  opts = options.slice(:value, :endian)
  super(opts)
  @packstr = { big: 'q>', little: 'q<', native: 'q' }
end