Skip to content

Commit 727e74e

Browse files
committed
---
yaml --- r: 229131 b: refs/heads/try c: ffa2121 h: refs/heads/master i: 229129: 5395243 229127: 40ba189 v: v3
1 parent e74e48f commit 727e74e

File tree

8 files changed

+207
-226
lines changed

8 files changed

+207
-226
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: aca2057ed5fb7af3f8905b2bc01f72fa001c35c8
33
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4-
refs/heads/try: 0860b29b6a4cc4c150ed2dfb245320527d9a7cc0
4+
refs/heads/try: ffa21217d2aa41475dd5d14c39f09e17277cf14c
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
77
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try/src/doc/trpl/SUMMARY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
* [Primitive Types](primitive-types.md)
2727
* [Comments](comments.md)
2828
* [if](if.md)
29-
* [Loops](loops.md)
29+
* [for loops](for-loops.md)
30+
* [while loops](while-loops.md)
3031
* [Ownership](ownership.md)
3132
* [References and Borrowing](references-and-borrowing.md)
3233
* [Lifetimes](lifetimes.md)

branches/try/src/doc/trpl/choosing-your-guarantees.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,6 @@ scope.
308308

309309
Both of these provide safe shared mutability across threads, however they are prone to deadlocks.
310310
Some level of additional protocol safety can be obtained via the type system.
311-
312311
#### Costs
313312

314313
These use internal atomic-like types to maintain the locks, which are pretty costly (they can block
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
% for Loops
2+
3+
The `for` loop is used to loop a particular number of times. Rust’s `for` loops
4+
work a bit differently than in other systems languages, however. Rust’s `for`
5+
loop doesn’t look like this “C-style” `for` loop:
6+
7+
```c
8+
for (x = 0; x < 10; x++) {
9+
printf( "%d\n", x );
10+
}
11+
```
12+
13+
Instead, it looks like this:
14+
15+
```rust
16+
for x in 0..10 {
17+
println!("{}", x); // x: i32
18+
}
19+
```
20+
21+
In slightly more abstract terms,
22+
23+
```ignore
24+
for var in expression {
25+
code
26+
}
27+
```
28+
29+
The expression is an [iterator][iterator]. The iterator gives back a series of
30+
elements. Each element is one iteration of the loop. That value is then bound
31+
to the name `var`, which is valid for the loop body. Once the body is over, the
32+
next value is fetched from the iterator, and we loop another time. When there
33+
are no more values, the `for` loop is over.
34+
35+
[iterator]: iterators.html
36+
37+
In our example, `0..10` is an expression that takes a start and an end position,
38+
and gives an iterator over those values. The upper bound is exclusive, though,
39+
so our loop will print `0` through `9`, not `10`.
40+
41+
Rust does not have the “C-style” `for` loop on purpose. Manually controlling
42+
each element of the loop is complicated and error prone, even for experienced C
43+
developers.
44+
45+
# Enumerate
46+
47+
When you need to keep track of how many times you already looped, you can use the `.enumerate()` function.
48+
49+
## On ranges:
50+
51+
```rust
52+
for (i,j) in (5..10).enumerate() {
53+
println!("i = {} and j = {}", i, j);
54+
}
55+
```
56+
57+
Outputs:
58+
59+
```text
60+
i = 0 and j = 5
61+
i = 1 and j = 6
62+
i = 2 and j = 7
63+
i = 3 and j = 8
64+
i = 4 and j = 9
65+
```
66+
67+
Don't forget to add the parentheses around the range.
68+
69+
## On iterators:
70+
71+
```rust
72+
# let lines = "hello\nworld".lines();
73+
for (linenumber, line) in lines.enumerate() {
74+
println!("{}: {}", linenumber, line);
75+
}
76+
```
77+
78+
Outputs:
79+
80+
```text
81+
0: Content of line one
82+
1: Content of line two
83+
2: Content of line tree
84+
3: Content of line four
85+
```

branches/try/src/doc/trpl/loops.md

Lines changed: 0 additions & 209 deletions
This file was deleted.

0 commit comments

Comments
 (0)