2011-12-13 18:25:51 -06:00
|
|
|
/*
|
|
|
|
Module: option
|
|
|
|
|
|
|
|
Represents the presence or absence of a value.
|
|
|
|
|
|
|
|
Every option<T> 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
|
|
|
|
*/
|
2012-01-19 17:56:54 -06:00
|
|
|
enum t<T> {
|
2011-12-13 18:25:51 -06:00
|
|
|
/* 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`.
|
|
|
|
*/
|
2012-01-05 08:35:37 -06:00
|
|
|
pure fn get<T: copy>(opt: t<T>) -> T {
|
2012-01-19 00:37:22 -06:00
|
|
|
alt opt { some(x) { ret x; } none { fail "option none"; } }
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
*/
|
2012-01-05 08:35:37 -06:00
|
|
|
fn map<T, U: copy>(opt: t<T>, f: block(T) -> U) -> t<U> {
|
2012-01-19 00:37:22 -06:00
|
|
|
alt opt { some(x) { some(f(x)) } none { none } }
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Function: is_none
|
|
|
|
|
|
|
|
Returns true if the option equals none
|
|
|
|
*/
|
|
|
|
pure fn is_none<T>(opt: t<T>) -> bool {
|
2012-01-19 00:37:22 -06:00
|
|
|
alt opt { none { true } some(_) { false } }
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Function: is_some
|
|
|
|
|
|
|
|
Returns true if the option contains some value
|
|
|
|
*/
|
|
|
|
pure fn is_some<T>(opt: t<T>) -> bool { !is_none(opt) }
|
|
|
|
|
|
|
|
/*
|
|
|
|
Function: from_maybe
|
|
|
|
|
|
|
|
Returns the contained value or a default
|
|
|
|
*/
|
2012-01-05 08:35:37 -06:00
|
|
|
pure fn from_maybe<T: copy>(def: T, opt: t<T>) -> T {
|
2012-01-19 00:37:22 -06:00
|
|
|
alt opt { some(x) { x } none { def } }
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Function: maybe
|
|
|
|
|
|
|
|
Applies a function to the contained value or returns a default
|
|
|
|
*/
|
2012-01-05 08:35:37 -06:00
|
|
|
fn maybe<T, U: copy>(def: U, opt: t<T>, f: block(T) -> U) -> U {
|
2012-01-19 00:37:22 -06:00
|
|
|
alt opt { none { def } some(t) { f(t) } }
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
*/
|
2011-12-16 08:27:50 -06:00
|
|
|
fn may<T>(opt: t<T>, f: block(T)) {
|
2012-01-19 00:37:22 -06:00
|
|
|
alt opt { none {/* nothing */ } some(t) { f(t); } }
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
#[test]
|
|
|
|
fn test() { let _x = some::<int>(10); }
|
|
|
|
|
2011-12-13 18:25:51 -06:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust;
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|