Enum.each
You're seeing just the function
each, go back to Enum module for more information.
Specs
Invokes the given fun for each element in the enumerable.
Returns :ok.
Examples
Enum.each(["some", "example"], fn x -> IO.puts(x) end)
"some"
"example"
#=> :ok