Application Operator - SML
Table of Contents
We can implement a dollar sign operator, like what Haskell has. Simply put, we'd have:
infixr 0 $ fun (f $ x) = f x
1. References
- The application operator in Standard ML, 0branch
($)
Haskell documentation, prelude 4.5.0- Infixing Operators, MLTon wiki page