aboutsummaryrefslogtreecommitdiff
path: root/src/lib/option.rs
diff options
context:
space:
mode:
authorPatrick Walton <[email protected]>2010-11-05 10:41:23 -0700
committerPatrick Walton <[email protected]>2010-11-05 10:41:23 -0700
commit2fcf81cc4b132bf7d862f5144d282391b38d0c15 (patch)
treed6e2c25528a83959111707cd7e29b4b30b93cf6a /src/lib/option.rs
parentrustboot: Describe the cycle when reporting a cyclic import error (diff)
downloadrust-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.rs40
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:
-