Skip to content

Commit 911a043

Browse files
committed
---
yaml --- r: 35463 b: refs/heads/master c: 65a1287 h: refs/heads/master i: 35461: c5f6dee 35459: 385669b 35455: fdecfd9 v: v3
1 parent 7b47a2c commit 911a043

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 01c0971172578ac170b3ae07c35ae416644ca1ef
2+
refs/heads/master: 65a1287f53c11718fa2cb153f2046af701c9cf9a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: eb8fd119c65c67f3b1b8268cc7341c22d39b7b61
55
refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024

trunk/doc/tutorial.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1817,14 +1817,29 @@ struct Stack<T> {
18171817
elements: ~[mut T]
18181818
}
18191819
1820-
enum Maybe<T> {
1821-
Just(T),
1822-
Nothing
1820+
enum Option<T> {
1821+
Some(T),
1822+
None
18231823
}
18241824
~~~~
18251825

18261826
These declarations can be instantiated to valid types like `Set<int>`,
1827-
`Stack<int>` and `Maybe<int>`.
1827+
`Stack<int>` and `Option<int>`.
1828+
1829+
The last type in that example, `Option`, appears frequently in Rust code.
1830+
Because Rust does not have null pointers (except in unsafe code), we need
1831+
another way to write a function whose result isn't defined on every possible
1832+
combination of arguments of the appropriate types. The usual way is to write
1833+
a function that returns `Option<T>` instead of `T`.
1834+
1835+
~~~~
1836+
fn radius(shape: Shape) -> Option<float> {
1837+
match shape {
1838+
Circle(_, radius) => Some(radius),
1839+
Rectangle(*) => None
1840+
}
1841+
}
1842+
~~~~
18281843

18291844
The Rust compiler compiles generic functions very efficiently by
18301845
*monomorphizing* them. *Monomorphization* is a fancy name for a simple

0 commit comments

Comments
 (0)