Skip to content

Commit 6078f39

Browse files
Document ignore() (#570)
1 parent 11a421c commit 6078f39

File tree

4 files changed

+79
-26
lines changed

4 files changed

+79
-26
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
id: "ignore-function"
3+
keywords: ["ignore"]
4+
name: "ignore"
5+
summary: "This is the `ignore()` function."
6+
category: "builtinfunctions"
7+
---
8+
9+
The `ignore()` function discards the value of its argument and returns `()`.
10+
11+
### Examples
12+
13+
<CodeTab labels={["ReScript", "JS Output"]}>
14+
15+
```res
16+
mySideEffect()->Promise.catch(handleError)->ignore
17+
18+
Js.Global.setTimeout(myFunc, 1000)->ignore
19+
```
20+
21+
```js
22+
$$Promise.$$catch(mySideEffect(), function (prim) {
23+
return handleError(prim);
24+
});
25+
26+
setTimeout(function (prim) {
27+
myFunc();
28+
}, 1000);
29+
```
30+
31+
</CodeTab>
32+
33+
### References
34+
35+
* [The ignore() function](/docs/manual/latest/function#the-ignore-function)

pages/docs/manual/latest/function.mdx

+18-15
Original file line numberDiff line numberDiff line change
@@ -409,33 +409,36 @@ add(1, 2);
409409

410410
</CodeTab>
411411

412-
If you need to call a curried function with a single unit `()` argument, you can use the `ignore()` function:
412+
If you write down the uncurried function's type, you'll add a dot there as well.
413+
414+
**Note**: both the declaration site and the call site need to have the uncurry annotation. That's part of the guarantee/requirement.
415+
416+
**This feature seems trivial**, but is actually one of our most important features, as a primarily functional language. We encourage you to use it if you'd like to remove any mention of `Curry` runtime in the JS output.
417+
418+
## The ignore() Function
419+
420+
Occasionally you may want to ignore the return value of a function. ReScript provides an `ignore()` function that discards the value of its argument and returns `()`:
413421

414422
<CodeTab labels={["ReScript", "JS Output"]}>
415423

416-
```res example
417-
let echo = (. a) => a
424+
```res
425+
mySideEffect()->Promise.catch(handleError)->ignore
418426
419-
echo(. ignore())
427+
Js.Global.setTimeout(myFunc, 1000)->ignore
420428
```
421429

422430
```js
423-
function echo(a) {
424-
return a;
425-
}
431+
$$Promise.$$catch(mySideEffect(), function (prim) {
432+
return handleError(prim);
433+
});
426434

427-
echo(undefined);
435+
setTimeout(function (prim) {
436+
myFunc();
437+
}, 1000);
428438
```
429439

430440
</CodeTab>
431441

432-
433-
If you write down the uncurried function's type, you'll add a dot there as well.
434-
435-
**Note**: both the declaration site and the call site need to have the uncurry annotation. That's part of the guarantee/requirement.
436-
437-
**This feature seems trivial**, but is actually one of our most important features, as a primarily functional language. We encourage you to use it if you'd like to remove any mention of `Curry` runtime in the JS output.
438-
439442
## Tips & Tricks
440443

441444
Cheat sheet for the function syntaxes:

src/SyntaxLookup.mjs

+14-9
Original file line numberDiff line numberDiff line change
@@ -29,30 +29,34 @@ function toString(t) {
2929
return "Operators";
3030
case /* LanguageConstructs */2 :
3131
return "Language Constructs";
32-
case /* ExtensionPoints */3 :
32+
case /* BuiltInFunctions */3 :
33+
return "Built In Functions";
34+
case /* ExtensionPoints */4 :
3335
return "Extension Points";
34-
case /* SpecialValues */4 :
36+
case /* SpecialValues */5 :
3537
return "Special Values";
36-
case /* Other */5 :
38+
case /* Other */6 :
3739
return "Other";
3840

3941
}
4042
}
4143

4244
function fromString(s) {
4345
switch (s) {
46+
case "builtinfunctions" :
47+
return /* BuiltInFunctions */3;
4448
case "decorators" :
4549
return /* Decorators */0;
4650
case "extensionpoints" :
47-
return /* ExtensionPoints */3;
51+
return /* ExtensionPoints */4;
4852
case "languageconstructs" :
4953
return /* LanguageConstructs */2;
5054
case "operators" :
5155
return /* Operators */1;
5256
case "specialvalues" :
53-
return /* SpecialValues */4;
57+
return /* SpecialValues */5;
5458
default:
55-
return /* Other */5;
59+
return /* Other */6;
5660
}
5761
}
5862

@@ -233,9 +237,10 @@ function SyntaxLookup(Props) {
233237
/* Decorators */0,
234238
/* Operators */1,
235239
/* LanguageConstructs */2,
236-
/* ExtensionPoints */3,
237-
/* SpecialValues */4,
238-
/* Other */5
240+
/* BuiltInFunctions */3,
241+
/* ExtensionPoints */4,
242+
/* SpecialValues */5,
243+
/* Other */6
239244
], (function (cat) {
240245
return [
241246
toString(cat),

src/SyntaxLookup.res

+12-2
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,21 @@ let requireSyntaxFile: string => MdxComp.t = %raw(`
3131
`)
3232

3333
module Category = {
34-
type t = Decorators | Operators | LanguageConstructs | ExtensionPoints | SpecialValues | Other
34+
type t =
35+
| Decorators
36+
| Operators
37+
| LanguageConstructs
38+
| BuiltInFunctions
39+
| ExtensionPoints
40+
| SpecialValues
41+
| Other
3542

3643
let toString = t =>
3744
switch t {
3845
| Decorators => "Decorators"
3946
| Operators => "Operators"
4047
| ExtensionPoints => "Extension Points"
48+
| BuiltInFunctions => "Built In Functions"
4149
| LanguageConstructs => "Language Constructs"
4250
| SpecialValues => "Special Values"
4351
| Other => "Other"
@@ -46,10 +54,11 @@ module Category = {
4654
let fromString = (s: string): t => {
4755
switch s {
4856
| "decorators" => Decorators
49-
| "specialvalues" => SpecialValues
5057
| "operators" => Operators
5158
| "languageconstructs" => LanguageConstructs
59+
| "builtinfunctions" => BuiltInFunctions
5260
| "extensionpoints" => ExtensionPoints
61+
| "specialvalues" => SpecialValues
5362
| _ => Other
5463
}
5564
}
@@ -237,6 +246,7 @@ let make = () => {
237246
Decorators,
238247
Operators,
239248
LanguageConstructs,
249+
BuiltInFunctions,
240250
ExtensionPoints,
241251
SpecialValues,
242252
Other,

0 commit comments

Comments
 (0)