Class: DFuzz::Long

Inherits:
Integer show all
Defined in:
lib/dfuzz/integer.rb

Instance Method Summary collapse

Methods inherited from Generator

#current, #each, #empty?, #end?, #index, #next, #next?, #pos, #rewind, #shift, #yield

Constructor Details

#initialize(delta = 0x10000) ⇒ Long

Returns a new instance of Long.



22
23
24
# File 'lib/dfuzz/integer.rb', line 22

def initialize(delta = 0x10000)
  super([0x00000000, 0x0000001, 0x7FFFFFFF, 0xFFFFFFFF, 0x40000000, 0xC0000000], delta, 0xffffffff)
end