Class: DFuzz::Byte

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 = 0x10) ⇒ Byte

Returns a new instance of Byte.



10
11
12
# File 'lib/dfuzz/integer.rb', line 10

def initialize(delta = 0x10)
    super([0x00, 0x01, 0x7F, 0xFF], delta, 0xFF)
end