class Grape::Util::Lazy::ValueArray

def evaluate

def evaluate
  @value_hash.map(&:evaluate)
end

def initialize(array)

def initialize(array)
  super
  @value_hash = []
  array.each_with_index do |value, index|
    self[index] = value
  end
end