Class: BinStruct::Int32

Inherits:
Int
  • Object
show all
Defined in:
lib/bin_struct/int.rb

Overview

4-byte unsigned integer

Author:

  • LemonTree55

Direct Known Subclasses

Int32be, Int32le, Int32n, SInt32

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 = {}) ⇒ Int32

Returns a new instance of Int32.

Parameters:

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

Options Hash (options):

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


321
322
323
324
325
# File 'lib/bin_struct/int.rb', line 321

def initialize(options = {})
  opts = { value: options[:value], endian: options[:endian] || :big, width: 4 }
  super(opts)
  @packstr = { big: 'N', little: 'V', native: 'L' }
end