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
{{ message }}
This repository was archived by the owner on Dec 12, 2024. It is now read-only.
Copy file name to clipboardexpand all lines: pages/book/statements.mdx
+47-1
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,15 @@ let vMap: map<Int, Int> = emptyMap(); // explicit type map<Int, Int>
29
29
let vMapWithSerialization: map<Int as uint8, Int as uint8> = emptyMap();
30
30
```
31
31
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
+
32
41
## `return` statement [#return]
33
42
34
43
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 {
208
217
}
209
218
```
210
219
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
+
211
230
<Callout>
212
231
213
232
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$
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
+
329
375
<Callouttype="warning"emoji="⚠️">
330
376
331
377
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