There are a lot of interesting haskell snippets to be found online. This post could be found under this (awesome) Stack Overflow question. The author writes the following:
discount ∷ Floating α ⇒ α → α → α → α
discount τ df x = x * (1 + df) ** (-τ)
Are those fancy arrows and dots just a way to make the online page look nicer, or is there an actual Haskell extension (or whatever, I don't quite know the terminology) which would compile something like that? I should note that the usual ->
is used in the code just as well.
I have a strong feeling it's not the first time I see things like that.