module RoundRobin

Public Instance Methods

next!(arry) click to toggle source
# File lib/round_robin.rb, line 2
def next!(arry)
  value = arry.shift
  arry << value
  value
end