I am currently reading Learn You a Haskell for Great Good and I came across the notion "point-free style" on page 85 as shown below. However, the fn
function is full with points! This confuses me.
Why is this style of writing functions called "point-free" when it is full with points ?
How should I understand this notion ? "Point-free" in what sense ?
Where is the term "point-free style" originates from ? Perhaps from a language where function composition was denoted by space ?
PS: So far this is the only confusing part in this excellent book (i.e. in the first 85 pages I have read so far).