diff --git a/src/libcore/option.rs b/src/libcore/option.rs index d41dbb11adb..af9efee0c8f 100644 --- a/src/libcore/option.rs +++ b/src/libcore/option.rs @@ -235,7 +235,10 @@ pub fn is_none(&self) -> bool { #[inline] #[stable] pub fn as_ref<'r>(&'r self) -> Option<&'r T> { - match *self { Some(ref x) => Some(x), None => None } + match *self { + Some(ref x) => Some(x), + None => None + } } /// Convert from `Option` to `Option<&mut T>` @@ -253,7 +256,10 @@ pub fn as_ref<'r>(&'r self) -> Option<&'r T> { #[inline] #[unstable = "waiting for mut conventions"] pub fn as_mut<'r>(&'r mut self) -> Option<&'r mut T> { - match *self { Some(ref mut x) => Some(x), None => None } + match *self { + Some(ref mut x) => Some(x), + None => None + } } /// Convert from `Option` to `&mut [T]` (without copying) @@ -401,7 +407,10 @@ pub fn unwrap_or_else(self, f: || -> T) -> T { #[inline] #[unstable = "waiting for unboxed closures"] pub fn map(self, f: |T| -> U) -> Option { - match self { Some(x) => Some(f(x)), None => None } + match self { + Some(x) => Some(f(x)), + None => None + } } /// Applies a function to the contained value or returns a default. @@ -418,7 +427,10 @@ pub fn map(self, f: |T| -> U) -> Option { #[inline] #[unstable = "waiting for unboxed closures"] pub fn map_or(self, def: U, f: |T| -> U) -> U { - match self { None => def, Some(t) => f(t) } + match self { + Some(t) => f(t), + None => def + } } /// Applies a function to the contained value or computes a default. @@ -437,7 +449,10 @@ pub fn map_or(self, def: U, f: |T| -> U) -> U { #[inline] #[unstable = "waiting for unboxed closures"] pub fn map_or_else(self, def: || -> U, f: |T| -> U) -> U { - match self { None => def(), Some(t) => f(t) } + match self { + Some(t) => f(t), + None => def() + } } /// Transforms the `Option` into a `Result`, mapping `Some(v)` to