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#?
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#?