问题
In F#, you can define custom operators like
let (=~) input pattern = Regex.IsMatch(input, pattern)
Unlike Haskell, custom operators are defined without precedences. What are the operator precedences of the custom operators in F#?
回答1:
Operator precedence is determined by the first character(s), according to a predefined table.
来源:https://stackoverflow.com/questions/3347972/f-custom-operators-precedence