module Concurrent::MutableStruct

def values_at(*indexes)

Parameters:
  • indexes (Fixnum, Range) -- the index(es) from which to obatin the values (in order)
def values_at(*indexes)
  synchronize { ns_values_at(indexes) }
end