diff options
| author | Patrick Walton <[email protected]> | 2010-11-05 10:41:23 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2010-11-05 10:41:23 -0700 |
| commit | 2fcf81cc4b132bf7d862f5144d282391b38d0c15 (patch) | |
| tree | d6e2c25528a83959111707cd7e29b4b30b93cf6a /src/lib/option.rs | |
| parent | rustboot: Describe the cycle when reporting a cyclic import error (diff) | |
| download | rust-2fcf81cc4b132bf7d862f5144d282391b38d0c15.tar.xz rust-2fcf81cc4b132bf7d862f5144d282391b38d0c15.zip | |
Revert "Move the option type to its own module"
Diffstat (limited to 'src/lib/option.rs')
| -rw-r--r-- | src/lib/option.rs | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/lib/option.rs b/src/lib/option.rs deleted file mode 100644 index dbf08b3e..00000000 --- a/src/lib/option.rs +++ /dev/null @@ -1,40 +0,0 @@ -// lib/option.rs - -tag t[T] { - none; - some(T); -} - -type operator[T, U] = fn(&T) -> U; - -fn get[T](&t[T] opt) -> T { - alt (opt) { - case (some[T](?x)) { - ret x; - } - case (none[T]) { - fail; - } - } -} - -fn map[T, U](&operator[T, U] f, &t[T] opt) -> t[U] { - alt (opt) { - case (some[T](?x)) { - ret some[U](f(x)); - } - case (none[T]) { - ret none[U]; - } - } -} - -// Local Variables: -// mode: rust; -// fill-column: 78; -// indent-tabs-mode: nil -// c-basic-offset: 4 -// buffer-file-coding-system: utf-8-unix -// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; -// End: - |