You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: _blogposts/2025-04-05-introducing-unified-operators.mdx
+19-13
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ description: |
9
9
10
10
## Introduction
11
11
12
-
For upcoming ReScript v12, we're upgrading common arithmetic operators to be "Unified Operators"
12
+
In the upcoming ReScript v12, we're upgrading common arithmetic operators to "'Unified Operators".
13
13
14
14
This means that we can now use a single infix operator syntax for multiple numeric types, and even for string concatenation.
15
15
@@ -29,7 +29,7 @@ Until v12, the operator syntax had a few notable problems.
29
29
30
30
### Unwanted syntax gap
31
31
32
-
Having different operators for each type is not familiar to JavaScript users, and not even allowing overloading can feel strange to most programmers.
32
+
Using different operators for each type is unfamiliar to JavaScript users, and the lack of operator overloading can feel strange to most programmers.
33
33
34
34
This is tricky in the real world. Because JavaScript's default number type is `float`, not `int`, ReScript users have to routinely deal with awkward syntax like `+.`, `-.`, `*.`, `%.`.
35
35
@@ -58,28 +58,34 @@ let add_bigint = {
58
58
}
59
59
```
60
60
61
-
Every time we introduce a new primitive type (who knows!), we face the same issue across all arithmetic operators.
61
+
Every time we introduce a new primitive type (who knows?), we run into the same issue with all arithmetic operators.
62
62
63
63
### Hidden risk of polymorphism
64
64
65
65
Then why do we not use the same pretty operators everywhere as JavaScript?
66
66
67
67
```res
68
-
let compare_int = 1 < 2
69
-
let compare_float = 1.0 < 2.0
68
+
let compareInt = (a: int, b) => a < b
69
+
70
+
let compareFloat = (a: float, b) => a < b
70
71
```
71
72
72
73
```js
73
-
let compare_int =true
74
-
let compare_float =true
74
+
functioncompareInt(a, b) {
75
+
return a < b;
76
+
}
77
+
78
+
functioncompareFloat(a, b) {
79
+
return a < b;
80
+
}
75
81
```
76
82
77
83
And this won't be compiled
78
84
79
85
```res
80
-
let invalid = 1 < 2.0
81
-
// ~~~
82
-
// [E] Line 4, column 12:
86
+
let compareNumber = (a: int, b: float) => a < b
87
+
// ~~~
88
+
// [E] Line 1, column 46:
83
89
// This has type: float
84
90
// But it's being compared to something of type: int
85
91
//
@@ -93,7 +99,7 @@ Because ReScript only intentionally supports monomorphic operations, `(int, int)
93
99
94
100
While it's tempting to allow full operator overloading or polymorphism like JavaScript or TypeScript, we intentionally avoid it to preserve predictable type inference and runtime performance guarantees.
95
101
96
-
However, comparisons are actually exceptional ones. Let's summon the polymorphism.
102
+
However, comparisons are actually the exception. Time to summon polymorphism!
97
103
98
104
```res
99
105
let compare_poly = (a, b) => a < b
@@ -139,7 +145,7 @@ let inv1 = (a: int, b: float) => a + b // => (int, int) => int
139
145
140
146
Then, in IR, it is translated to the corresponding compile-time primitive based on the unified type.
141
147
142
-
This approach has been inspired by an awesome language [F#](https://learn.microsoft.com/en-us/dotnet/fsharp/language-reference/symbol-and-operator-reference/arithmetic-operators#operators-and-type-inference), which is also originated from OCaml.
148
+
This approach is inspired by the awesome language [F#](https://learn.microsoft.com/en-us/dotnet/fsharp/language-reference/symbol-and-operator-reference/arithmetic-operators#operators-and-type-inference), which also originates from OCaml.
143
149
144
150
> The use of an operator in an expression constrains type inference on that operator. Also, the use of operators prevents automatic generalization, because the use of operators implies an arithmetic type. In the absence of any other information, the F# compiler infers `int` as the type of arithmetic expressions.
145
151
@@ -159,7 +165,7 @@ By normalizing how primitive operators are added and managed, it also lowers mai
159
165
160
166
We are working to support more unified operators to close the syntax gap with JavaScript.
161
167
162
-
In the ReScript v12, most familiar JavaScript operators should work as is. Not only arithmetic operators, but also bitwise and shift operators.
168
+
In ReScript v12, most familiar JavaScript operators should work as-is — not just arithmetic operators, but also bitwise and shift operators.
0 commit comments