The collect_concat() of enumerable is an inbuilt method in Ruby returns a new array with the concatenated results of running block once for every element in enum. In case no block is given, an enumerator is returned instead.
Syntax: block.collect_concat { |obj| block }
Parameters: The function takes the block according to which the every block is to be returned. If no block is given, an enumerator is returned.
Return Value: It returns a new array.
Example 1:
enu = [ 12 , 18 ]
res = enu.collect_concat { |el| [ 2 *el, 3 *el] }
|
Output:
[24, 36, 36, 54]
Example 2:
enu = [[ 17 , 21 ], [ 19 , 100 ]]
res = enu.collect_concat { |el| el + [ 1000 ] }
|
Output:
[17, 21, 1000, 19, 100, 1000]