Open In App

Ruby | Array collect!() operation

Improve
Improve
Like Article
Like
Save
Share
Report

Array#collect!() : collect!() is an Array class method which invokes the argument block once for each element of the array, replacing the element with the value returned by the block

Syntax:  Array.collect!()

Parameter:  Arrays in which we want elements to be invoked

Return:  array with all the envoked elements

Code #1 : Example for collect!() method




# Ruby code for collect!() method
  
# declaring array
a = ["cat", "rat", "geeks"]
  
# invoking block for each element
# returning elements that don't follow
puts "collect a : #{a.collect! {|x| x + "!" }}\n\n"
  
puts "collect a : #{a.collect! {|x| x + "_at" }}\n\n"


Output :

collect a : ["cat!", "rat!", "geeks!"]

collect a : ["cat!_at", "rat!_at", "geeks!_at"]

Code #2 : Example for collect!() method




# Ruby code for collect!() method
  
# declaring array
a = [1, 2, 3, 4]
  
# invoking block for each element
# returning elements that don't follow
puts "collect a : #{a.collect! {|x| x + 1 }}\n\n"
  
puts "collect a : #{a.collect! {|x| x - 5*7 }}\n\n"


Output :

collect! a : [2, 3, 4, 5]

collect! a : [-33, -32, -31, -30]



Last Updated : 08 Jan, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads