I saw in some of the code which I am unable to understand the purpose of << like in the following sample code
def renderFiles(args) { def model = []
In groovy << operator adds result of expression on the right side to the collection on the left side
<<