Warning: this is an April Fools' post
Point-free style is a big trend in modern functional programming: it allows to manipulate functions without mentioning their arguments which makes the code concise and compositional. Here is an example from Wikipedia:
mf = (. map) . (.) . filter
This function…