# File lib/inline_acceleration.rb, line 95
  def method_missing(name, *args, &block)
    if name.to_s[-1..-1] == 's'
      method_name = name.to_s[0..-2].to_sym
      if size == 0 || self[0].respond_to?(method_name)
        return map_method_results(method_name)
      end
    end
    throw_method_missing(name, args, &block)
  end