Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/fsharp/language-reference/operator-overloading.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@ Other combinations of operator characters that are not listed here can be used a
|`)`|`RParen`|
|`[`|`LBrack`|
|`]`|`RBrack`|
|`:`|`Colon`|

Use of `:` in custom operators is partially reserved. It may only be used in operators where the first character is `>` or `.` where the first character after any number of leading `.` is `>` e.g. `>:` or `.>:`.

## Prefix and Infix Operators

Expand Down
Loading