enumerable的collect_concat()是Ruby中的一種內置方法,它對枚舉中的每個元素返回一個新數組,並帶有運行塊的連接結果一次。如果沒有給出塊,則返回一個枚舉數。
用法: block.collect_concat { |obj| block }
參數:該函數采用要返回每個塊的塊。如果沒有給出塊,則返回一個枚舉數。
返回值:它返回一個新數組。
例子1:
# Ruby program for collect_concat method in Enumerable
# Initialize
enu = [12, 18]
# returns enumerator
res = enu.collect_concat { |el| [2*el, 3*el] }
輸出:
[24, 36, 36, 54]
例子2:
# Ruby program for collect_concat method in Enumerable
# Initialize
enu = [[17, 21], [19, 100]]
# returns enumerator
res = enu.collect_concat { |el| el + [1000] }
輸出:
[17, 21, 1000, 19, 100, 1000]
相關用法
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable first()用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable find_all()用法及代碼示例
- Ruby Enumerable include?()用法及代碼示例
- Ruby Enumerable uniq()用法及代碼示例
- Ruby Enumerable each_cons()用法及代碼示例
- Ruby Enumerable find()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable collect_concat() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。