Class: DFuzz::LongLong
- Defined in:
- lib/dfuzz/integer.rb
Instance Method Summary collapse
-
#initialize(delta = 100000000) ⇒ LongLong
constructor
A new instance of LongLong.
Methods inherited from Generator
#current, #each, #empty?, #end?, #index, #next, #next?, #pos, #rewind, #shift, #yield
Constructor Details
#initialize(delta = 100000000) ⇒ LongLong
28 29 30 |
# File 'lib/dfuzz/integer.rb', line 28 def initialize(delta = 100000000) super([0x00000000, 0x0000001, 0x7FFFFFFFFFFFFFFF, 0xFFFFFFFF, 0x4000000000000000, 0xC000000000000000], delta, 0xffffffffffffffff) end |