Skip to content

Commit 5417cee

Browse files
authored
Merge pull request #170 from kdnakt/translate-vec
Translate untranslated lines in vec.md
2 parents 95a7a74 + 881e28b commit 5417cee

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/std/vec.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,21 +65,27 @@ fn main() {
6565
// 不正なインデックスアクセスはpanicを引き起こします。
6666
println!("Fourth element: {}", xs[3]);
6767
// FIXME ^ Comment out this line
68+
// FIXME ^ この行をコメントアウトしましょう。
6869
6970
// `Vector`s can be easily iterated over
71+
// `Vector`は簡単にイテレートできます。
7072
println!("Contents of xs:");
7173
for x in xs.iter() {
7274
println!("> {}", x);
7375
}
7476
7577
// A `Vector` can also be iterated over while the iteration
7678
// count is enumerated in a separate variable (`i`)
79+
// `Vector`をイテレートしながら、
80+
// イテレーションの回数を別の変数(`i`)に列挙することもできます。
7781
for (i, x) in xs.iter().enumerate() {
7882
println!("In position {} we have value {}", i, x);
7983
}
8084
8185
// Thanks to `iter_mut`, mutable `Vector`s can also be iterated
8286
// over in a way that allows modifying each value
87+
// `iter_mut`を使うと、ミュータブルな`Vector`をイテレートし、
88+
// それぞれの値を修正することができます。
8389
for x in xs.iter_mut() {
8490
*x *= 3;
8591
}

0 commit comments

Comments
 (0)