Skip to content

Commit 093a6e2

Browse files
authored
Translate dot-operator.md (#34)
1 parent 4f35b08 commit 093a6e2

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

src/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* [Splitting Borrows](borrow-splitting.md)
2323
* [型変換](conversions.md)
2424
* [型強制](coercions.md)
25-
* [The Dot Operator](dot-operator.md)
25+
* [ドットオペレータ](dot-operator.md)
2626
* [Casts](casts.md)
2727
* [Transmutes](transmutes.md)
2828
* [Uninitialized Memory](uninitialized.md)

src/dot-operator.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1+
<!--
12
# The Dot Operator
3+
-->
24

5+
# ドットオペレータ
6+
7+
<!--
38
The dot operator will perform a lot of magic to convert types. It will perform
49
auto-referencing, auto-dereferencing, and coercion until types match.
10+
-->
11+
12+
ドットオペレータは型を変換するため、沢山の魔法を使います。
13+
型がマッチするまで、自動参照、自動参照外し、そして型強制を行ないます。
514

15+
<!--
616
TODO: steal information from http://stackoverflow.com/questions/28519997/what-are-rusts-exact-auto-dereferencing-rules/28552082#28552082
17+
-->
18+
19+
TODO: http://stackoverflow.com/questions/28519997/what-are-rusts-exact-auto-dereferencing-rules/28552082#28552082 から情報を盗ってくる。

0 commit comments

Comments
 (0)