Do you think Kernel.++ has readability?

It’s useful when passing it around as a higher-order function.
Ex.

iex(1)> Enum.reduce ['u','o','i','e','a'], &Kernel.++/2 
'aeiou'
1 Like