# File lib/rubytorrent/util.rb, line 179
  def map_bytes
    ret = []
    each_byte { |x| ret.push(yield(x)) }
    ret
  end