Skip to content

Commit 6dfb9cc

Browse files
Polish sentences
Co-authored-by: Florian Hammerschmidt <[email protected]>
1 parent 3fb0fa0 commit 6dfb9cc

File tree

1 file changed

+19
-13
lines changed

1 file changed

+19
-13
lines changed

_blogposts/2025-04-05-introducing-unified-operators.mdx

+19-13
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: |
99

1010
## Introduction
1111

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".
1313

1414
This means that we can now use a single infix operator syntax for multiple numeric types, and even for string concatenation.
1515

@@ -29,7 +29,7 @@ Until v12, the operator syntax had a few notable problems.
2929

3030
### Unwanted syntax gap
3131

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.
3333

3434
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 `+.`, `-.`, `*.`, `%.`.
3535

@@ -58,28 +58,34 @@ let add_bigint = {
5858
}
5959
```
6060

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.
6262

6363
### Hidden risk of polymorphism
6464

6565
Then why do we not use the same pretty operators everywhere as JavaScript?
6666

6767
```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
7071
```
7172

7273
```js
73-
let compare_int = true
74-
let compare_float = true
74+
function compareInt(a, b) {
75+
return a < b;
76+
}
77+
78+
function compareFloat(a, b) {
79+
return a < b;
80+
}
7581
```
7682

7783
And this won't be compiled
7884

7985
```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:
8389
// This has type: float
8490
// But it's being compared to something of type: int
8591
//
@@ -93,7 +99,7 @@ Because ReScript only intentionally supports monomorphic operations, `(int, int)
9399

94100
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.
95101

96-
However, comparisons are actually exceptional ones. Let's summon the polymorphism.
102+
However, comparisons are actually the exception. Time to summon polymorphism!
97103

98104
```res
99105
let compare_poly = (a, b) => a < b
@@ -139,7 +145,7 @@ let inv1 = (a: int, b: float) => a + b // => (int, int) => int
139145

140146
Then, in IR, it is translated to the corresponding compile-time primitive based on the unified type.
141147

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.
143149

144150
> 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.
145151
@@ -159,7 +165,7 @@ By normalizing how primitive operators are added and managed, it also lowers mai
159165

160166
We are working to support more unified operators to close the syntax gap with JavaScript.
161167

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.
163169

164170
- Remainder operator (`%`) - [#7152](https://github.com/rescript-lang/rescript/pull/7152)
165171
- Exponentiation operator (`**`) - [#7153](https://github.com/rescript-lang/rescript/pull/7153)

0 commit comments

Comments
 (0)