Ruby/Array/empty
Материал из Wiki.crossplatform.ru
(Различия между версиями)
ViGOur (Обсуждение | вклад) м (1 версия: Импорт выборки материалов по Ruby) |
Текущая версия на 18:01, 13 сентября 2010
Check for an Empty Array
x = [] puts "x is empty" if x.empty?
Loop through an array until empty
def print_each(array) array.each { |x| puts x.inspect } end hash = { "A" => "a", "B" => "b" } array = hash.to_a until array.empty? item, quantity = array.pop puts "#{quantity} #{item}" end