class TurboRex::Fuzzer::Container::ContainerBase

Attributes

buf[R]

Public Instance Methods

fixed=(v) click to toggle source
# File lib/turborex/fuzzer/containers.rb, line 9
def fixed=(v)
  @fixed = true
  set_data v
end
mutate(mutator) click to toggle source
# File lib/turborex/fuzzer/containers.rb, line 14
def mutate(mutator)
  return @buf if @fixed
  set_data mutator.mutate(@buf)
end