本文簡要介紹ruby語言中 Array.cycle
的用法。
用法
cycle {|element| ... } → nil
cycle(count) {|element| ... } → nil
cycle → new_enumerator
cycle(count) → new_enumerator
當使用正整數參數 count
和塊調用時,使用每個元素調用塊,然後再次調用,直到調用 count
次;返回 nil
:
output = []
[0, 1].cycle(2) {|element| output.push(element) } # => nil
output # => [0, 1, 0, 1]
如果 count
為零或負數,則不調用該塊:
[0, 1].cycle(0) {|element| fail 'Cannot happen' } # => nil
[0, 1].cycle(-1) {|element| fail 'Cannot happen' } # => nil
當給出一個塊並且省略參數或 nil
時,將永遠循環:
# Prints 0 and 1 forever.
[0, 1].cycle {|element| puts element }
[0, 1].cycle(nil) {|element| puts element }
當沒有給出塊時,返回一個新的枚舉器:
[0, 1].cycle(2) # => #<Enumerator: [0, 1]:cycle(2)>
[0, 1].cycle # => # => #<Enumerator: [0, 1]:cycle>
[0, 1].cycle.first(5) # => [0, 1, 0, 1, 0]
相關用法
- Ruby Array.cycle()用法及代碼示例
- Ruby Array.combination()用法及代碼示例
- Ruby Array.combination用法及代碼示例
- Ruby Array.collect用法及代碼示例
- Ruby Array.concat用法及代碼示例
- Ruby Array.collect!用法及代碼示例
- Ruby Array.compact用法及代碼示例
- Ruby Array.clear用法及代碼示例
- Ruby Array.count用法及代碼示例
- Ruby Array.push用法及代碼示例
- Ruby Array.hash用法及代碼示例
- Ruby Array.to_a用法及代碼示例
- Ruby Array.to_h用法及代碼示例
- Ruby Array.to_s用法及代碼示例
- Ruby Array.array + other_array用法及代碼示例
- Ruby Array.take()用法及代碼示例
- Ruby Array.reject!用法及代碼示例
- Ruby Array.flatten!用法及代碼示例
- Ruby Array.reject用法及代碼示例
- Ruby Array.repeated_permutation()用法及代碼示例
- Ruby Array.index()用法及代碼示例
- Ruby Array.pack()用法及代碼示例
- Ruby Array.rassoc(obj)用法及代碼示例
- Ruby Array.values_at()用法及代碼示例
- Ruby Array.each用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Array.cycle。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。