aboutsummaryrefslogtreecommitdiff
path: root/src/lib/option.rs
diff options
context:
space:
mode:
authorPatrick Walton <[email protected]>2010-11-03 17:10:37 -0700
committerPatrick Walton <[email protected]>2010-11-05 10:23:22 -0700
commit1d214b4df3013a53e50d778fa921ed99bc498d02 (patch)
treec87006304b72bd7fec9962afac5370de4e2d57bd /src/lib/option.rs
parentFix buggy while and do-while translation in rustc. Add test. (diff)
downloadrust-1d214b4df3013a53e50d778fa921ed99bc498d02.tar.xz
rust-1d214b4df3013a53e50d778fa921ed99bc498d02.zip
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, 40 insertions, 0 deletions
diff --git a/src/lib/option.rs b/src/lib/option.rs
new file mode 100644
index 00000000..dbf08b3e
--- /dev/null
+++ b/src/lib/option.rs
@@ -0,0 +1,40 @@
+// 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:
+