/* Module: option Represents the presence or absence of a value. Every option value can either be some(T) or none. Where in other languages you might use a nullable type, in Rust you would use an option type. */ /* Tag: t The option type */ enum t { /* Variant: none */ none; /* Variant: some */ some(T); } /* Section: Operations */ /* Function: get Gets the value out of an option Failure: Fails if the value equals `none`. */ pure fn get(opt: t) -> T { alt opt { some(x) { ret x; } none { fail "option none"; } } } /* */ fn map(opt: t, f: block(T) -> U) -> t { alt opt { some(x) { some(f(x)) } none { none } } } /* Function: is_none Returns true if the option equals none */ pure fn is_none(opt: t) -> bool { alt opt { none { true } some(_) { false } } } /* Function: is_some Returns true if the option contains some value */ pure fn is_some(opt: t) -> bool { !is_none(opt) } /* Function: from_maybe Returns the contained value or a default */ pure fn from_maybe(def: T, opt: t) -> T { alt opt { some(x) { x } none { def } } } /* Function: maybe Applies a function to the contained value or returns a default */ fn maybe(def: U, opt: t, f: block(T) -> U) -> U { alt opt { none { def } some(t) { f(t) } } } // FIXME: Can be defined in terms of the above when/if we have const bind. /* Function: may Performs an operation on the contained value or does nothing */ fn may(opt: t, f: block(T)) { alt opt { none {/* nothing */ } some(t) { f(t); } } } #[test] fn test() { let _x = some::(10); } // Local Variables: // mode: rust; // fill-column: 78; // indent-tabs-mode: nil // c-basic-offset: 4 // buffer-file-coding-system: utf-8-unix // End: