Is this more readable?
`x ~> square . mean . root`
Where `~>` "sends" a value to a function `x ~> f := f(x)` and `.` is the "backwards" function composition `f . g := \x (g (f x))
I think I prefer the "backwards" notation ("root mean square"), but I can see the appeal of "square mean root"
[0]https://docs.microsoft.com/en-us/dotnet/fsharp/language-refe...
Is this more readable?
`x ~> square . mean . root`
Where `~>` "sends" a value to a function `x ~> f := f(x)` and `.` is the "backwards" function composition `f . g := \x (g (f x))
I think I prefer the "backwards" notation ("root mean square"), but I can see the appeal of "square mean root"