class HTTP::Response::IoBody

def each

Iterate over the body, allowing it to be enumerable
def each
  while (part = readpartial)
    yield part
  end
end