Skip to content
This repository was archived by the owner on Dec 12, 2024. It is now read-only.

Commit c7e5db4

Browse files
authored
feat: underscores _ as unused variable identifiers in let, catch and foreach (#283)
1 parent 5b85ed0 commit c7e5db4

File tree

1 file changed

+47
-1
lines changed

1 file changed

+47
-1
lines changed

pages/book/statements.mdx

+47-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,15 @@ let vMap: map<Int, Int> = emptyMap(); // explicit type map<Int, Int>
2929
let vMapWithSerialization: map<Int as uint8, Int as uint8> = emptyMap();
3030
```
3131

32+
Naming a local variable with underscore `_{:tact}` makes its value considered unused and discarded. This is useful when you don't need a return value of some function with side effects, and want to explicitly mark the variable as unused. Note, that such wildcard variable name `_{:tact}` cannot be accessed:
33+
34+
```tact
35+
let _ = someFunctionWithSideEffects(); // with type inference
36+
let _: map<Int, Int> = emptyMap(); // with explicit type
37+
38+
dump(_); // COMPILATION ERROR! Cannot access _
39+
```
40+
3241
## `return` statement [#return]
3342

3443
The `return{:tact}` statement ends [function](/book/functions) execution and specifies a value to be returned to the [function](/book/functions) caller.
@@ -208,6 +217,16 @@ try {
208217
}
209218
```
210219

220+
Note, that similar to [`let{:tact}` statement](#let), captured [exit code](/book/exit-codes) in the `catch (){:tact}` clause can be discarded by specifying an underscore `_{:tact}` in its place:
221+
222+
```tact
223+
try {
224+
throw(42);
225+
} catch (_) {
226+
dump("I don't know the exit code anymore");
227+
}
228+
```
229+
211230
<Callout>
212231

213232
Read more about exit codes on the dedicated page: [Exit codes in the Book](/book/exit-codes).
@@ -271,7 +290,7 @@ In the following example, map `cells` has $4$ entries, so the loop will run $4$
271290
// Empty map
272291
let cells: map<Int, Cell> = emptyMap();
273292
274-
// Setting four values
293+
// Setting four entries
275294
cells.set(1, beginCell().storeUint(100, 16).endCell());
276295
cells.set(2, beginCell().storeUint(200, 16).endCell());
277296
cells.set(3, beginCell().storeUint(300, 16).endCell());
@@ -326,6 +345,33 @@ contract Iterated {
326345
}
327346
```
328347

348+
Note, that similar to [`let{:tact}` statement](#let), either of captured key or value (or both) can be discarded by specifying an underscore `_{:tact}` in their place:
349+
350+
```tact
351+
// Empty map
352+
let quartiles: map<Int, Int> = emptyMap();
353+
354+
// Setting some entries
355+
quartiles.set(1, 25);
356+
quartiles.set(2, 50);
357+
quartiles.set(3, 75);
358+
359+
// Discarding captured keys
360+
// without modifying them in the map itself
361+
foreach (_, value in quartiles) {}
362+
363+
// Discarding captured values
364+
// without modifying them in the map itself
365+
foreach (key, _ in quartiles) {}
366+
367+
// Discarding both keys and values
368+
// without modifying them in the map itself
369+
foreach (_, _ in quartiles) {
370+
// Can't access via _, but can do desired operations
371+
// n times, where n is the current length of the map
372+
}
373+
```
374+
329375
<Callout type="warning" emoji="⚠️">
330376

331377
Note, that at the moment `foreach{:tact}` works only with explicitly provided map identifiers and nested identifier constructions, like `foo.bar.targetMap{:tact}` or `self.baz.targetMap{:tact}`. That is, returning a map from a function and trying to iterate over its entries won't work:

0 commit comments

Comments
 (0)