Class: DFuzz::Long
- Defined in:
- lib/dfuzz/integer.rb
Instance Method Summary collapse
-
#initialize(delta = 0x10000) ⇒ Long
constructor
A new instance of Long.
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 |