Although I often read that it is advisable to chain functions in the following manner:
f1 . f2 . f3 . f4 $ value
I find that I like the following chaining method better:
f1 $ f2 $ f3 $ f4 value
Other than the visual difference, is there a functional or performance difference between the two?