Ruby 枚举的collect_concat()函数
enumerable 的 collect_concat() 是Ruby中的一个内置方法,它返回一个新的数组,其中包含对enum中每个元素运行一次块的连接结果。如果没有给定块,将返回一个枚举器。
语法 :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]