one fable-low hijack cell
pair c / fsharp
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked c (first-offered)
· classifierA
· tiernone
response (200 chars)
In F#, the `^` symbol has a few meanings:
**1. Statically resolved type parameters**
```fsharp
let inline add (x: ^T) (y: ^T) : ^T = x + y
```
The `^T` syntax denotes a type parameter resolved at com
neighbors