]> git.lizzy.rs Git - rust.git/blob - src/libcore/option.rs
Auto merge of #61361 - estebank:infer-type, r=varkor
[rust.git] / src / libcore / option.rs
1 //! Optional values.
2 //!
3 //! Type [`Option`] represents an optional value: every [`Option`]
4 //! is either [`Some`] and contains a value, or [`None`], and
5 //! does not. [`Option`] types are very common in Rust code, as
6 //! they have a number of uses:
7 //!
8 //! * Initial values
9 //! * Return values for functions that are not defined
10 //!   over their entire input range (partial functions)
11 //! * Return value for otherwise reporting simple errors, where `None` is
12 //!   returned on error
13 //! * Optional struct fields
14 //! * Struct fields that can be loaned or "taken"
15 //! * Optional function arguments
16 //! * Nullable pointers
17 //! * Swapping things out of difficult situations
18 //!
19 //! [`Option`]s are commonly paired with pattern matching to query the presence
20 //! of a value and take action, always accounting for the [`None`] case.
21 //!
22 //! ```
23 //! fn divide(numerator: f64, denominator: f64) -> Option<f64> {
24 //!     if denominator == 0.0 {
25 //!         None
26 //!     } else {
27 //!         Some(numerator / denominator)
28 //!     }
29 //! }
30 //!
31 //! // The return value of the function is an option
32 //! let result = divide(2.0, 3.0);
33 //!
34 //! // Pattern match to retrieve the value
35 //! match result {
36 //!     // The division was valid
37 //!     Some(x) => println!("Result: {}", x),
38 //!     // The division was invalid
39 //!     None    => println!("Cannot divide by 0"),
40 //! }
41 //! ```
42 //!
43 //
44 // FIXME: Show how `Option` is used in practice, with lots of methods
45 //
46 //! # Options and pointers ("nullable" pointers)
47 //!
48 //! Rust's pointer types must always point to a valid location; there are
49 //! no "null" pointers. Instead, Rust has *optional* pointers, like
50 //! the optional owned box, [`Option`]`<`[`Box<T>`]`>`.
51 //!
52 //! The following example uses [`Option`] to create an optional box of
53 //! [`i32`]. Notice that in order to use the inner [`i32`] value first, the
54 //! `check_optional` function needs to use pattern matching to
55 //! determine whether the box has a value (i.e., it is [`Some(...)`][`Some`]) or
56 //! not ([`None`]).
57 //!
58 //! ```
59 //! let optional = None;
60 //! check_optional(optional);
61 //!
62 //! let optional = Some(Box::new(9000));
63 //! check_optional(optional);
64 //!
65 //! fn check_optional(optional: Option<Box<i32>>) {
66 //!     match optional {
67 //!         Some(ref p) => println!("has value {}", p),
68 //!         None => println!("has no value"),
69 //!     }
70 //! }
71 //! ```
72 //!
73 //! This usage of [`Option`] to create safe nullable pointers is so
74 //! common that Rust does special optimizations to make the
75 //! representation of [`Option`]`<`[`Box<T>`]`>` a single pointer. Optional pointers
76 //! in Rust are stored as efficiently as any other pointer type.
77 //!
78 //! # Examples
79 //!
80 //! Basic pattern matching on [`Option`]:
81 //!
82 //! ```
83 //! let msg = Some("howdy");
84 //!
85 //! // Take a reference to the contained string
86 //! if let Some(ref m) = msg {
87 //!     println!("{}", *m);
88 //! }
89 //!
90 //! // Remove the contained string, destroying the Option
91 //! let unwrapped_msg = msg.unwrap_or("default message");
92 //! ```
93 //!
94 //! Initialize a result to [`None`] before a loop:
95 //!
96 //! ```
97 //! enum Kingdom { Plant(u32, &'static str), Animal(u32, &'static str) }
98 //!
99 //! // A list of data to search through.
100 //! let all_the_big_things = [
101 //!     Kingdom::Plant(250, "redwood"),
102 //!     Kingdom::Plant(230, "noble fir"),
103 //!     Kingdom::Plant(229, "sugar pine"),
104 //!     Kingdom::Animal(25, "blue whale"),
105 //!     Kingdom::Animal(19, "fin whale"),
106 //!     Kingdom::Animal(15, "north pacific right whale"),
107 //! ];
108 //!
109 //! // We're going to search for the name of the biggest animal,
110 //! // but to start with we've just got `None`.
111 //! let mut name_of_biggest_animal = None;
112 //! let mut size_of_biggest_animal = 0;
113 //! for big_thing in &all_the_big_things {
114 //!     match *big_thing {
115 //!         Kingdom::Animal(size, name) if size > size_of_biggest_animal => {
116 //!             // Now we've found the name of some big animal
117 //!             size_of_biggest_animal = size;
118 //!             name_of_biggest_animal = Some(name);
119 //!         }
120 //!         Kingdom::Animal(..) | Kingdom::Plant(..) => ()
121 //!     }
122 //! }
123 //!
124 //! match name_of_biggest_animal {
125 //!     Some(name) => println!("the biggest animal is {}", name),
126 //!     None => println!("there are no animals :("),
127 //! }
128 //! ```
129 //!
130 //! [`Option`]: enum.Option.html
131 //! [`Some`]: enum.Option.html#variant.Some
132 //! [`None`]: enum.Option.html#variant.None
133 //! [`Box<T>`]: ../../std/boxed/struct.Box.html
134 //! [`i32`]: ../../std/primitive.i32.html
135
136 #![stable(feature = "rust1", since = "1.0.0")]
137
138 use crate::iter::{FromIterator, FusedIterator, TrustedLen};
139 use crate::{convert, hint, mem, ops::{self, Deref}};
140 use crate::pin::Pin;
141
142 // Note that this is not a lang item per se, but it has a hidden dependency on
143 // `Iterator`, which is one. The compiler assumes that the `next` method of
144 // `Iterator` is an enumeration with one type parameter and two variants,
145 // which basically means it must be `Option`.
146
147 /// The `Option` type. See [the module level documentation](index.html) for more.
148 #[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)]
149 #[stable(feature = "rust1", since = "1.0.0")]
150 pub enum Option<T> {
151     /// No value
152     #[stable(feature = "rust1", since = "1.0.0")]
153     None,
154     /// Some value `T`
155     #[stable(feature = "rust1", since = "1.0.0")]
156     Some(#[stable(feature = "rust1", since = "1.0.0")] T),
157 }
158
159 /////////////////////////////////////////////////////////////////////////////
160 // Type implementation
161 /////////////////////////////////////////////////////////////////////////////
162
163 impl<T> Option<T> {
164     /////////////////////////////////////////////////////////////////////////
165     // Querying the contained values
166     /////////////////////////////////////////////////////////////////////////
167
168     /// Returns `true` if the option is a [`Some`] value.
169     ///
170     /// # Examples
171     ///
172     /// ```
173     /// let x: Option<u32> = Some(2);
174     /// assert_eq!(x.is_some(), true);
175     ///
176     /// let x: Option<u32> = None;
177     /// assert_eq!(x.is_some(), false);
178     /// ```
179     ///
180     /// [`Some`]: #variant.Some
181     #[must_use]
182     #[inline]
183     #[stable(feature = "rust1", since = "1.0.0")]
184     pub fn is_some(&self) -> bool {
185         match *self {
186             Some(_) => true,
187             None => false,
188         }
189     }
190
191     /// Returns `true` if the option is a [`None`] value.
192     ///
193     /// # Examples
194     ///
195     /// ```
196     /// let x: Option<u32> = Some(2);
197     /// assert_eq!(x.is_none(), false);
198     ///
199     /// let x: Option<u32> = None;
200     /// assert_eq!(x.is_none(), true);
201     /// ```
202     ///
203     /// [`None`]: #variant.None
204     #[must_use]
205     #[inline]
206     #[stable(feature = "rust1", since = "1.0.0")]
207     pub fn is_none(&self) -> bool {
208         !self.is_some()
209     }
210
211     /////////////////////////////////////////////////////////////////////////
212     // Adapter for working with references
213     /////////////////////////////////////////////////////////////////////////
214
215     /// Converts from `&Option<T>` to `Option<&T>`.
216     ///
217     /// # Examples
218     ///
219     /// Converts an `Option<`[`String`]`>` into an `Option<`[`usize`]`>`, preserving the original.
220     /// The [`map`] method takes the `self` argument by value, consuming the original,
221     /// so this technique uses `as_ref` to first take an `Option` to a reference
222     /// to the value inside the original.
223     ///
224     /// [`map`]: enum.Option.html#method.map
225     /// [`String`]: ../../std/string/struct.String.html
226     /// [`usize`]: ../../std/primitive.usize.html
227     ///
228     /// ```
229     /// let text: Option<String> = Some("Hello, world!".to_string());
230     /// // First, cast `Option<String>` to `Option<&String>` with `as_ref`,
231     /// // then consume *that* with `map`, leaving `text` on the stack.
232     /// let text_length: Option<usize> = text.as_ref().map(|s| s.len());
233     /// println!("still can print text: {:?}", text);
234     /// ```
235     #[inline]
236     #[stable(feature = "rust1", since = "1.0.0")]
237     pub fn as_ref(&self) -> Option<&T> {
238         match *self {
239             Some(ref x) => Some(x),
240             None => None,
241         }
242     }
243
244     /// Converts from `&mut Option<T>` to `Option<&mut T>`.
245     ///
246     /// # Examples
247     ///
248     /// ```
249     /// let mut x = Some(2);
250     /// match x.as_mut() {
251     ///     Some(v) => *v = 42,
252     ///     None => {},
253     /// }
254     /// assert_eq!(x, Some(42));
255     /// ```
256     #[inline]
257     #[stable(feature = "rust1", since = "1.0.0")]
258     pub fn as_mut(&mut self) -> Option<&mut T> {
259         match *self {
260             Some(ref mut x) => Some(x),
261             None => None,
262         }
263     }
264
265
266     /// Converts from `Pin<&Option<T>>` to `Option<Pin<&T>>`
267     #[inline]
268     #[stable(feature = "pin", since = "1.33.0")]
269     pub fn as_pin_ref<'a>(self: Pin<&'a Option<T>>) -> Option<Pin<&'a T>> {
270         unsafe {
271             Pin::get_ref(self).as_ref().map(|x| Pin::new_unchecked(x))
272         }
273     }
274
275     /// Converts from `Pin<&mut Option<T>>` to `Option<Pin<&mut T>>`
276     #[inline]
277     #[stable(feature = "pin", since = "1.33.0")]
278     pub fn as_pin_mut<'a>(self: Pin<&'a mut Option<T>>) -> Option<Pin<&'a mut T>> {
279         unsafe {
280             Pin::get_unchecked_mut(self).as_mut().map(|x| Pin::new_unchecked(x))
281         }
282     }
283
284     /////////////////////////////////////////////////////////////////////////
285     // Getting to contained values
286     /////////////////////////////////////////////////////////////////////////
287
288     /// Unwraps an option, yielding the content of a [`Some`].
289     ///
290     /// # Panics
291     ///
292     /// Panics if the value is a [`None`] with a custom panic message provided by
293     /// `msg`.
294     ///
295     /// [`Some`]: #variant.Some
296     /// [`None`]: #variant.None
297     ///
298     /// # Examples
299     ///
300     /// ```
301     /// let x = Some("value");
302     /// assert_eq!(x.expect("the world is ending"), "value");
303     /// ```
304     ///
305     /// ```{.should_panic}
306     /// let x: Option<&str> = None;
307     /// x.expect("the world is ending"); // panics with `the world is ending`
308     /// ```
309     #[inline]
310     #[stable(feature = "rust1", since = "1.0.0")]
311     pub fn expect(self, msg: &str) -> T {
312         match self {
313             Some(val) => val,
314             None => expect_failed(msg),
315         }
316     }
317
318     /// Moves the value `v` out of the `Option<T>` if it is [`Some(v)`].
319     ///
320     /// In general, because this function may panic, its use is discouraged.
321     /// Instead, prefer to use pattern matching and handle the [`None`]
322     /// case explicitly.
323     ///
324     /// # Panics
325     ///
326     /// Panics if the self value equals [`None`].
327     ///
328     /// [`Some(v)`]: #variant.Some
329     /// [`None`]: #variant.None
330     ///
331     /// # Examples
332     ///
333     /// ```
334     /// let x = Some("air");
335     /// assert_eq!(x.unwrap(), "air");
336     /// ```
337     ///
338     /// ```{.should_panic}
339     /// let x: Option<&str> = None;
340     /// assert_eq!(x.unwrap(), "air"); // fails
341     /// ```
342     #[inline]
343     #[stable(feature = "rust1", since = "1.0.0")]
344     pub fn unwrap(self) -> T {
345         match self {
346             Some(val) => val,
347             None => panic!("called `Option::unwrap()` on a `None` value"),
348         }
349     }
350
351     /// Returns the contained value or a default.
352     ///
353     /// Arguments passed to `unwrap_or` are eagerly evaluated; if you are passing
354     /// the result of a function call, it is recommended to use [`unwrap_or_else`],
355     /// which is lazily evaluated.
356     ///
357     /// [`unwrap_or_else`]: #method.unwrap_or_else
358     ///
359     /// # Examples
360     ///
361     /// ```
362     /// assert_eq!(Some("car").unwrap_or("bike"), "car");
363     /// assert_eq!(None.unwrap_or("bike"), "bike");
364     /// ```
365     #[inline]
366     #[stable(feature = "rust1", since = "1.0.0")]
367     pub fn unwrap_or(self, def: T) -> T {
368         match self {
369             Some(x) => x,
370             None => def,
371         }
372     }
373
374     /// Returns the contained value or computes it from a closure.
375     ///
376     /// # Examples
377     ///
378     /// ```
379     /// let k = 10;
380     /// assert_eq!(Some(4).unwrap_or_else(|| 2 * k), 4);
381     /// assert_eq!(None.unwrap_or_else(|| 2 * k), 20);
382     /// ```
383     #[inline]
384     #[stable(feature = "rust1", since = "1.0.0")]
385     pub fn unwrap_or_else<F: FnOnce() -> T>(self, f: F) -> T {
386         match self {
387             Some(x) => x,
388             None => f(),
389         }
390     }
391
392     /////////////////////////////////////////////////////////////////////////
393     // Transforming contained values
394     /////////////////////////////////////////////////////////////////////////
395
396     /// Maps an `Option<T>` to `Option<U>` by applying a function to a contained value.
397     ///
398     /// # Examples
399     ///
400     /// Converts an `Option<`[`String`]`>` into an `Option<`[`usize`]`>`, consuming the original:
401     ///
402     /// [`String`]: ../../std/string/struct.String.html
403     /// [`usize`]: ../../std/primitive.usize.html
404     ///
405     /// ```
406     /// let maybe_some_string = Some(String::from("Hello, World!"));
407     /// // `Option::map` takes self *by value*, consuming `maybe_some_string`
408     /// let maybe_some_len = maybe_some_string.map(|s| s.len());
409     ///
410     /// assert_eq!(maybe_some_len, Some(13));
411     /// ```
412     #[inline]
413     #[stable(feature = "rust1", since = "1.0.0")]
414     pub fn map<U, F: FnOnce(T) -> U>(self, f: F) -> Option<U> {
415         match self {
416             Some(x) => Some(f(x)),
417             None => None,
418         }
419     }
420
421     /// Applies a function to the contained value (if any),
422     /// or returns the provided default (if not).
423     ///
424     /// # Examples
425     ///
426     /// ```
427     /// let x = Some("foo");
428     /// assert_eq!(x.map_or(42, |v| v.len()), 3);
429     ///
430     /// let x: Option<&str> = None;
431     /// assert_eq!(x.map_or(42, |v| v.len()), 42);
432     /// ```
433     #[inline]
434     #[stable(feature = "rust1", since = "1.0.0")]
435     pub fn map_or<U, F: FnOnce(T) -> U>(self, default: U, f: F) -> U {
436         match self {
437             Some(t) => f(t),
438             None => default,
439         }
440     }
441
442     /// Applies a function to the contained value (if any),
443     /// or computes a default (if not).
444     ///
445     /// # Examples
446     ///
447     /// ```
448     /// let k = 21;
449     ///
450     /// let x = Some("foo");
451     /// assert_eq!(x.map_or_else(|| 2 * k, |v| v.len()), 3);
452     ///
453     /// let x: Option<&str> = None;
454     /// assert_eq!(x.map_or_else(|| 2 * k, |v| v.len()), 42);
455     /// ```
456     #[inline]
457     #[stable(feature = "rust1", since = "1.0.0")]
458     pub fn map_or_else<U, D: FnOnce() -> U, F: FnOnce(T) -> U>(self, default: D, f: F) -> U {
459         match self {
460             Some(t) => f(t),
461             None => default(),
462         }
463     }
464
465     /// Transforms the `Option<T>` into a [`Result<T, E>`], mapping [`Some(v)`] to
466     /// [`Ok(v)`] and [`None`] to [`Err(err)`].
467     ///
468     /// Arguments passed to `ok_or` are eagerly evaluated; if you are passing the
469     /// result of a function call, it is recommended to use [`ok_or_else`], which is
470     /// lazily evaluated.
471     ///
472     /// [`Result<T, E>`]: ../../std/result/enum.Result.html
473     /// [`Ok(v)`]: ../../std/result/enum.Result.html#variant.Ok
474     /// [`Err(err)`]: ../../std/result/enum.Result.html#variant.Err
475     /// [`None`]: #variant.None
476     /// [`Some(v)`]: #variant.Some
477     /// [`ok_or_else`]: #method.ok_or_else
478     ///
479     /// # Examples
480     ///
481     /// ```
482     /// let x = Some("foo");
483     /// assert_eq!(x.ok_or(0), Ok("foo"));
484     ///
485     /// let x: Option<&str> = None;
486     /// assert_eq!(x.ok_or(0), Err(0));
487     /// ```
488     #[inline]
489     #[stable(feature = "rust1", since = "1.0.0")]
490     pub fn ok_or<E>(self, err: E) -> Result<T, E> {
491         match self {
492             Some(v) => Ok(v),
493             None => Err(err),
494         }
495     }
496
497     /// Transforms the `Option<T>` into a [`Result<T, E>`], mapping [`Some(v)`] to
498     /// [`Ok(v)`] and [`None`] to [`Err(err())`].
499     ///
500     /// [`Result<T, E>`]: ../../std/result/enum.Result.html
501     /// [`Ok(v)`]: ../../std/result/enum.Result.html#variant.Ok
502     /// [`Err(err())`]: ../../std/result/enum.Result.html#variant.Err
503     /// [`None`]: #variant.None
504     /// [`Some(v)`]: #variant.Some
505     ///
506     /// # Examples
507     ///
508     /// ```
509     /// let x = Some("foo");
510     /// assert_eq!(x.ok_or_else(|| 0), Ok("foo"));
511     ///
512     /// let x: Option<&str> = None;
513     /// assert_eq!(x.ok_or_else(|| 0), Err(0));
514     /// ```
515     #[inline]
516     #[stable(feature = "rust1", since = "1.0.0")]
517     pub fn ok_or_else<E, F: FnOnce() -> E>(self, err: F) -> Result<T, E> {
518         match self {
519             Some(v) => Ok(v),
520             None => Err(err()),
521         }
522     }
523
524     /////////////////////////////////////////////////////////////////////////
525     // Iterator constructors
526     /////////////////////////////////////////////////////////////////////////
527
528     /// Returns an iterator over the possibly contained value.
529     ///
530     /// # Examples
531     ///
532     /// ```
533     /// let x = Some(4);
534     /// assert_eq!(x.iter().next(), Some(&4));
535     ///
536     /// let x: Option<u32> = None;
537     /// assert_eq!(x.iter().next(), None);
538     /// ```
539     #[inline]
540     #[stable(feature = "rust1", since = "1.0.0")]
541     pub fn iter(&self) -> Iter<'_, T> {
542         Iter { inner: Item { opt: self.as_ref() } }
543     }
544
545     /// Returns a mutable iterator over the possibly contained value.
546     ///
547     /// # Examples
548     ///
549     /// ```
550     /// let mut x = Some(4);
551     /// match x.iter_mut().next() {
552     ///     Some(v) => *v = 42,
553     ///     None => {},
554     /// }
555     /// assert_eq!(x, Some(42));
556     ///
557     /// let mut x: Option<u32> = None;
558     /// assert_eq!(x.iter_mut().next(), None);
559     /// ```
560     #[inline]
561     #[stable(feature = "rust1", since = "1.0.0")]
562     pub fn iter_mut(&mut self) -> IterMut<'_, T> {
563         IterMut { inner: Item { opt: self.as_mut() } }
564     }
565
566     /////////////////////////////////////////////////////////////////////////
567     // Boolean operations on the values, eager and lazy
568     /////////////////////////////////////////////////////////////////////////
569
570     /// Returns [`None`] if the option is [`None`], otherwise returns `optb`.
571     ///
572     /// [`None`]: #variant.None
573     ///
574     /// # Examples
575     ///
576     /// ```
577     /// let x = Some(2);
578     /// let y: Option<&str> = None;
579     /// assert_eq!(x.and(y), None);
580     ///
581     /// let x: Option<u32> = None;
582     /// let y = Some("foo");
583     /// assert_eq!(x.and(y), None);
584     ///
585     /// let x = Some(2);
586     /// let y = Some("foo");
587     /// assert_eq!(x.and(y), Some("foo"));
588     ///
589     /// let x: Option<u32> = None;
590     /// let y: Option<&str> = None;
591     /// assert_eq!(x.and(y), None);
592     /// ```
593     #[inline]
594     #[stable(feature = "rust1", since = "1.0.0")]
595     pub fn and<U>(self, optb: Option<U>) -> Option<U> {
596         match self {
597             Some(_) => optb,
598             None => None,
599         }
600     }
601
602     /// Returns [`None`] if the option is [`None`], otherwise calls `f` with the
603     /// wrapped value and returns the result.
604     ///
605     /// Some languages call this operation flatmap.
606     ///
607     /// [`None`]: #variant.None
608     ///
609     /// # Examples
610     ///
611     /// ```
612     /// fn sq(x: u32) -> Option<u32> { Some(x * x) }
613     /// fn nope(_: u32) -> Option<u32> { None }
614     ///
615     /// assert_eq!(Some(2).and_then(sq).and_then(sq), Some(16));
616     /// assert_eq!(Some(2).and_then(sq).and_then(nope), None);
617     /// assert_eq!(Some(2).and_then(nope).and_then(sq), None);
618     /// assert_eq!(None.and_then(sq).and_then(sq), None);
619     /// ```
620     #[inline]
621     #[stable(feature = "rust1", since = "1.0.0")]
622     pub fn and_then<U, F: FnOnce(T) -> Option<U>>(self, f: F) -> Option<U> {
623         match self {
624             Some(x) => f(x),
625             None => None,
626         }
627     }
628
629     /// Returns `None` if the option is `None`, otherwise calls `predicate`
630     /// with the wrapped value and returns:
631     ///
632     /// - `Some(t)` if `predicate` returns `true` (where `t` is the wrapped
633     ///   value), and
634     /// - `None` if `predicate` returns `false`.
635     ///
636     /// This function works similar to `Iterator::filter()`. You can imagine
637     /// the `Option<T>` being an iterator over one or zero elements. `filter()`
638     /// lets you decide which elements to keep.
639     ///
640     /// # Examples
641     ///
642     /// ```rust
643     /// fn is_even(n: &i32) -> bool {
644     ///     n % 2 == 0
645     /// }
646     ///
647     /// assert_eq!(None.filter(is_even), None);
648     /// assert_eq!(Some(3).filter(is_even), None);
649     /// assert_eq!(Some(4).filter(is_even), Some(4));
650     /// ```
651     #[inline]
652     #[stable(feature = "option_filter", since = "1.27.0")]
653     pub fn filter<P: FnOnce(&T) -> bool>(self, predicate: P) -> Self {
654         if let Some(x) = self {
655             if predicate(&x) {
656                 return Some(x)
657             }
658         }
659         None
660     }
661
662     /// Returns the option if it contains a value, otherwise returns `optb`.
663     ///
664     /// Arguments passed to `or` are eagerly evaluated; if you are passing the
665     /// result of a function call, it is recommended to use [`or_else`], which is
666     /// lazily evaluated.
667     ///
668     /// [`or_else`]: #method.or_else
669     ///
670     /// # Examples
671     ///
672     /// ```
673     /// let x = Some(2);
674     /// let y = None;
675     /// assert_eq!(x.or(y), Some(2));
676     ///
677     /// let x = None;
678     /// let y = Some(100);
679     /// assert_eq!(x.or(y), Some(100));
680     ///
681     /// let x = Some(2);
682     /// let y = Some(100);
683     /// assert_eq!(x.or(y), Some(2));
684     ///
685     /// let x: Option<u32> = None;
686     /// let y = None;
687     /// assert_eq!(x.or(y), None);
688     /// ```
689     #[inline]
690     #[stable(feature = "rust1", since = "1.0.0")]
691     pub fn or(self, optb: Option<T>) -> Option<T> {
692         match self {
693             Some(_) => self,
694             None => optb,
695         }
696     }
697
698     /// Returns the option if it contains a value, otherwise calls `f` and
699     /// returns the result.
700     ///
701     /// # Examples
702     ///
703     /// ```
704     /// fn nobody() -> Option<&'static str> { None }
705     /// fn vikings() -> Option<&'static str> { Some("vikings") }
706     ///
707     /// assert_eq!(Some("barbarians").or_else(vikings), Some("barbarians"));
708     /// assert_eq!(None.or_else(vikings), Some("vikings"));
709     /// assert_eq!(None.or_else(nobody), None);
710     /// ```
711     #[inline]
712     #[stable(feature = "rust1", since = "1.0.0")]
713     pub fn or_else<F: FnOnce() -> Option<T>>(self, f: F) -> Option<T> {
714         match self {
715             Some(_) => self,
716             None => f(),
717         }
718     }
719
720     /// Returns [`Some`] if exactly one of `self`, `optb` is [`Some`], otherwise returns `None`.
721     ///
722     /// [`Some`]: #variant.Some
723     /// [`None`]: #variant.None
724     ///
725     /// # Examples
726     ///
727     /// ```
728     /// #![feature(option_xor)]
729     ///
730     /// let x = Some(2);
731     /// let y: Option<u32> = None;
732     /// assert_eq!(x.xor(y), Some(2));
733     ///
734     /// let x: Option<u32> = None;
735     /// let y = Some(2);
736     /// assert_eq!(x.xor(y), Some(2));
737     ///
738     /// let x = Some(2);
739     /// let y = Some(2);
740     /// assert_eq!(x.xor(y), None);
741     ///
742     /// let x: Option<u32> = None;
743     /// let y: Option<u32> = None;
744     /// assert_eq!(x.xor(y), None);
745     /// ```
746     #[inline]
747     #[unstable(feature = "option_xor", issue = "50512")]
748     pub fn xor(self, optb: Option<T>) -> Option<T> {
749         match (self, optb) {
750             (Some(a), None) => Some(a),
751             (None, Some(b)) => Some(b),
752             _ => None,
753         }
754     }
755
756     /////////////////////////////////////////////////////////////////////////
757     // Entry-like operations to insert if None and return a reference
758     /////////////////////////////////////////////////////////////////////////
759
760     /// Inserts `v` into the option if it is [`None`], then
761     /// returns a mutable reference to the contained value.
762     ///
763     /// [`None`]: #variant.None
764     ///
765     /// # Examples
766     ///
767     /// ```
768     /// let mut x = None;
769     ///
770     /// {
771     ///     let y: &mut u32 = x.get_or_insert(5);
772     ///     assert_eq!(y, &5);
773     ///
774     ///     *y = 7;
775     /// }
776     ///
777     /// assert_eq!(x, Some(7));
778     /// ```
779     #[inline]
780     #[stable(feature = "option_entry", since = "1.20.0")]
781     pub fn get_or_insert(&mut self, v: T) -> &mut T {
782         match *self {
783             None => *self = Some(v),
784             _ => (),
785         }
786
787         match *self {
788             Some(ref mut v) => v,
789             None => unsafe { hint::unreachable_unchecked() },
790         }
791     }
792
793     /// Inserts a value computed from `f` into the option if it is [`None`], then
794     /// returns a mutable reference to the contained value.
795     ///
796     /// [`None`]: #variant.None
797     ///
798     /// # Examples
799     ///
800     /// ```
801     /// let mut x = None;
802     ///
803     /// {
804     ///     let y: &mut u32 = x.get_or_insert_with(|| 5);
805     ///     assert_eq!(y, &5);
806     ///
807     ///     *y = 7;
808     /// }
809     ///
810     /// assert_eq!(x, Some(7));
811     /// ```
812     #[inline]
813     #[stable(feature = "option_entry", since = "1.20.0")]
814     pub fn get_or_insert_with<F: FnOnce() -> T>(&mut self, f: F) -> &mut T {
815         match *self {
816             None => *self = Some(f()),
817             _ => (),
818         }
819
820         match *self {
821             Some(ref mut v) => v,
822             None => unsafe { hint::unreachable_unchecked() },
823         }
824     }
825
826     /////////////////////////////////////////////////////////////////////////
827     // Misc
828     /////////////////////////////////////////////////////////////////////////
829
830     /// Takes the value out of the option, leaving a [`None`] in its place.
831     ///
832     /// [`None`]: #variant.None
833     ///
834     /// # Examples
835     ///
836     /// ```
837     /// let mut x = Some(2);
838     /// let y = x.take();
839     /// assert_eq!(x, None);
840     /// assert_eq!(y, Some(2));
841     ///
842     /// let mut x: Option<u32> = None;
843     /// let y = x.take();
844     /// assert_eq!(x, None);
845     /// assert_eq!(y, None);
846     /// ```
847     #[inline]
848     #[stable(feature = "rust1", since = "1.0.0")]
849     pub fn take(&mut self) -> Option<T> {
850         mem::replace(self, None)
851     }
852
853     /// Replaces the actual value in the option by the value given in parameter,
854     /// returning the old value if present,
855     /// leaving a [`Some`] in its place without deinitializing either one.
856     ///
857     /// [`Some`]: #variant.Some
858     ///
859     /// # Examples
860     ///
861     /// ```
862     /// let mut x = Some(2);
863     /// let old = x.replace(5);
864     /// assert_eq!(x, Some(5));
865     /// assert_eq!(old, Some(2));
866     ///
867     /// let mut x = None;
868     /// let old = x.replace(3);
869     /// assert_eq!(x, Some(3));
870     /// assert_eq!(old, None);
871     /// ```
872     #[inline]
873     #[stable(feature = "option_replace", since = "1.31.0")]
874     pub fn replace(&mut self, value: T) -> Option<T> {
875         mem::replace(self, Some(value))
876     }
877 }
878
879 impl<T: Copy> Option<&T> {
880     /// Maps an `Option<&T>` to an `Option<T>` by copying the contents of the
881     /// option.
882     ///
883     /// # Examples
884     ///
885     /// ```
886     /// let x = 12;
887     /// let opt_x = Some(&x);
888     /// assert_eq!(opt_x, Some(&12));
889     /// let copied = opt_x.copied();
890     /// assert_eq!(copied, Some(12));
891     /// ```
892     #[stable(feature = "copied", since = "1.35.0")]
893     pub fn copied(self) -> Option<T> {
894         self.map(|&t| t)
895     }
896 }
897
898 impl<T: Copy> Option<&mut T> {
899     /// Maps an `Option<&mut T>` to an `Option<T>` by copying the contents of the
900     /// option.
901     ///
902     /// # Examples
903     ///
904     /// ```
905     /// let mut x = 12;
906     /// let opt_x = Some(&mut x);
907     /// assert_eq!(opt_x, Some(&mut 12));
908     /// let copied = opt_x.copied();
909     /// assert_eq!(copied, Some(12));
910     /// ```
911     #[stable(feature = "copied", since = "1.35.0")]
912     pub fn copied(self) -> Option<T> {
913         self.map(|&mut t| t)
914     }
915 }
916
917 impl<T: Clone> Option<&T> {
918     /// Maps an `Option<&T>` to an `Option<T>` by cloning the contents of the
919     /// option.
920     ///
921     /// # Examples
922     ///
923     /// ```
924     /// let x = 12;
925     /// let opt_x = Some(&x);
926     /// assert_eq!(opt_x, Some(&12));
927     /// let cloned = opt_x.cloned();
928     /// assert_eq!(cloned, Some(12));
929     /// ```
930     #[stable(feature = "rust1", since = "1.0.0")]
931     pub fn cloned(self) -> Option<T> {
932         self.map(|t| t.clone())
933     }
934 }
935
936 impl<T: Clone> Option<&mut T> {
937     /// Maps an `Option<&mut T>` to an `Option<T>` by cloning the contents of the
938     /// option.
939     ///
940     /// # Examples
941     ///
942     /// ```
943     /// let mut x = 12;
944     /// let opt_x = Some(&mut x);
945     /// assert_eq!(opt_x, Some(&mut 12));
946     /// let cloned = opt_x.cloned();
947     /// assert_eq!(cloned, Some(12));
948     /// ```
949     #[stable(since = "1.26.0", feature = "option_ref_mut_cloned")]
950     pub fn cloned(self) -> Option<T> {
951         self.map(|t| t.clone())
952     }
953 }
954
955 impl<T: Default> Option<T> {
956     /// Returns the contained value or a default
957     ///
958     /// Consumes the `self` argument then, if [`Some`], returns the contained
959     /// value, otherwise if [`None`], returns the [default value] for that
960     /// type.
961     ///
962     /// # Examples
963     ///
964     /// Converts a string to an integer, turning poorly-formed strings
965     /// into 0 (the default value for integers). [`parse`] converts
966     /// a string to any other type that implements [`FromStr`], returning
967     /// [`None`] on error.
968     ///
969     /// ```
970     /// let good_year_from_input = "1909";
971     /// let bad_year_from_input = "190blarg";
972     /// let good_year = good_year_from_input.parse().ok().unwrap_or_default();
973     /// let bad_year = bad_year_from_input.parse().ok().unwrap_or_default();
974     ///
975     /// assert_eq!(1909, good_year);
976     /// assert_eq!(0, bad_year);
977     /// ```
978     ///
979     /// [`Some`]: #variant.Some
980     /// [`None`]: #variant.None
981     /// [default value]: ../default/trait.Default.html#tymethod.default
982     /// [`parse`]: ../../std/primitive.str.html#method.parse
983     /// [`FromStr`]: ../../std/str/trait.FromStr.html
984     #[inline]
985     #[stable(feature = "rust1", since = "1.0.0")]
986     pub fn unwrap_or_default(self) -> T {
987         match self {
988             Some(x) => x,
989             None => Default::default(),
990         }
991     }
992 }
993
994 #[unstable(feature = "inner_deref", reason = "newly added", issue = "50264")]
995 impl<T: Deref> Option<T> {
996     /// Converts from `&Option<T>` to `Option<&T::Target>`.
997     ///
998     /// Leaves the original Option in-place, creating a new one with a reference
999     /// to the original one, additionally coercing the contents via `Deref`.
1000     pub fn deref(&self) -> Option<&T::Target> {
1001         self.as_ref().map(|t| t.deref())
1002     }
1003 }
1004
1005 impl<T, E> Option<Result<T, E>> {
1006     /// Transposes an `Option` of a `Result` into a `Result` of an `Option`.
1007     ///
1008     /// `None` will be mapped to `Ok(None)`.
1009     /// `Some(Ok(_))` and `Some(Err(_))` will be mapped to `Ok(Some(_))` and `Err(_)`.
1010     ///
1011     /// # Examples
1012     ///
1013     /// ```
1014     /// #[derive(Debug, Eq, PartialEq)]
1015     /// struct SomeErr;
1016     ///
1017     /// let x: Result<Option<i32>, SomeErr> = Ok(Some(5));
1018     /// let y: Option<Result<i32, SomeErr>> = Some(Ok(5));
1019     /// assert_eq!(x, y.transpose());
1020     /// ```
1021     #[inline]
1022     #[stable(feature = "transpose_result", since = "1.33.0")]
1023     pub fn transpose(self) -> Result<Option<T>, E> {
1024         match self {
1025             Some(Ok(x)) => Ok(Some(x)),
1026             Some(Err(e)) => Err(e),
1027             None => Ok(None),
1028         }
1029     }
1030 }
1031
1032 // This is a separate function to reduce the code size of .expect() itself.
1033 #[inline(never)]
1034 #[cold]
1035 fn expect_failed(msg: &str) -> ! {
1036     panic!("{}", msg)
1037 }
1038
1039 /////////////////////////////////////////////////////////////////////////////
1040 // Trait implementations
1041 /////////////////////////////////////////////////////////////////////////////
1042
1043 #[stable(feature = "rust1", since = "1.0.0")]
1044 impl<T> Default for Option<T> {
1045     /// Returns [`None`][Option::None].
1046     #[inline]
1047     fn default() -> Option<T> { None }
1048 }
1049
1050 #[stable(feature = "rust1", since = "1.0.0")]
1051 impl<T> IntoIterator for Option<T> {
1052     type Item = T;
1053     type IntoIter = IntoIter<T>;
1054
1055     /// Returns a consuming iterator over the possibly contained value.
1056     ///
1057     /// # Examples
1058     ///
1059     /// ```
1060     /// let x = Some("string");
1061     /// let v: Vec<&str> = x.into_iter().collect();
1062     /// assert_eq!(v, ["string"]);
1063     ///
1064     /// let x = None;
1065     /// let v: Vec<&str> = x.into_iter().collect();
1066     /// assert!(v.is_empty());
1067     /// ```
1068     #[inline]
1069     fn into_iter(self) -> IntoIter<T> {
1070         IntoIter { inner: Item { opt: self } }
1071     }
1072 }
1073
1074 #[stable(since = "1.4.0", feature = "option_iter")]
1075 impl<'a, T> IntoIterator for &'a Option<T> {
1076     type Item = &'a T;
1077     type IntoIter = Iter<'a, T>;
1078
1079     fn into_iter(self) -> Iter<'a, T> {
1080         self.iter()
1081     }
1082 }
1083
1084 #[stable(since = "1.4.0", feature = "option_iter")]
1085 impl<'a, T> IntoIterator for &'a mut Option<T> {
1086     type Item = &'a mut T;
1087     type IntoIter = IterMut<'a, T>;
1088
1089     fn into_iter(self) -> IterMut<'a, T> {
1090         self.iter_mut()
1091     }
1092 }
1093
1094 #[stable(since = "1.12.0", feature = "option_from")]
1095 impl<T> From<T> for Option<T> {
1096     fn from(val: T) -> Option<T> {
1097         Some(val)
1098     }
1099 }
1100
1101 #[stable(feature = "option_ref_from_ref_option", since = "1.30.0")]
1102 impl<'a, T> From<&'a Option<T>> for Option<&'a T> {
1103     fn from(o: &'a Option<T>) -> Option<&'a T> {
1104         o.as_ref()
1105     }
1106 }
1107
1108 #[stable(feature = "option_ref_from_ref_option", since = "1.30.0")]
1109 impl<'a, T> From<&'a mut Option<T>> for Option<&'a mut T> {
1110     fn from(o: &'a mut Option<T>) -> Option<&'a mut T> {
1111         o.as_mut()
1112     }
1113 }
1114
1115 /////////////////////////////////////////////////////////////////////////////
1116 // The Option Iterators
1117 /////////////////////////////////////////////////////////////////////////////
1118
1119 #[derive(Clone, Debug)]
1120 struct Item<A> {
1121     opt: Option<A>
1122 }
1123
1124 impl<A> Iterator for Item<A> {
1125     type Item = A;
1126
1127     #[inline]
1128     fn next(&mut self) -> Option<A> {
1129         self.opt.take()
1130     }
1131
1132     #[inline]
1133     fn size_hint(&self) -> (usize, Option<usize>) {
1134         match self.opt {
1135             Some(_) => (1, Some(1)),
1136             None => (0, Some(0)),
1137         }
1138     }
1139 }
1140
1141 impl<A> DoubleEndedIterator for Item<A> {
1142     #[inline]
1143     fn next_back(&mut self) -> Option<A> {
1144         self.opt.take()
1145     }
1146 }
1147
1148 impl<A> ExactSizeIterator for Item<A> {}
1149 impl<A> FusedIterator for Item<A> {}
1150 unsafe impl<A> TrustedLen for Item<A> {}
1151
1152 /// An iterator over a reference to the [`Some`] variant of an [`Option`].
1153 ///
1154 /// The iterator yields one value if the [`Option`] is a [`Some`], otherwise none.
1155 ///
1156 /// This `struct` is created by the [`Option::iter`] function.
1157 ///
1158 /// [`Option`]: enum.Option.html
1159 /// [`Some`]: enum.Option.html#variant.Some
1160 /// [`Option::iter`]: enum.Option.html#method.iter
1161 #[stable(feature = "rust1", since = "1.0.0")]
1162 #[derive(Debug)]
1163 pub struct Iter<'a, A: 'a> { inner: Item<&'a A> }
1164
1165 #[stable(feature = "rust1", since = "1.0.0")]
1166 impl<'a, A> Iterator for Iter<'a, A> {
1167     type Item = &'a A;
1168
1169     #[inline]
1170     fn next(&mut self) -> Option<&'a A> { self.inner.next() }
1171     #[inline]
1172     fn size_hint(&self) -> (usize, Option<usize>) { self.inner.size_hint() }
1173 }
1174
1175 #[stable(feature = "rust1", since = "1.0.0")]
1176 impl<'a, A> DoubleEndedIterator for Iter<'a, A> {
1177     #[inline]
1178     fn next_back(&mut self) -> Option<&'a A> { self.inner.next_back() }
1179 }
1180
1181 #[stable(feature = "rust1", since = "1.0.0")]
1182 impl<A> ExactSizeIterator for Iter<'_, A> {}
1183
1184 #[stable(feature = "fused", since = "1.26.0")]
1185 impl<A> FusedIterator for Iter<'_, A> {}
1186
1187 #[unstable(feature = "trusted_len", issue = "37572")]
1188 unsafe impl<A> TrustedLen for Iter<'_, A> {}
1189
1190 #[stable(feature = "rust1", since = "1.0.0")]
1191 impl<A> Clone for Iter<'_, A> {
1192     #[inline]
1193     fn clone(&self) -> Self {
1194         Iter { inner: self.inner.clone() }
1195     }
1196 }
1197
1198 /// An iterator over a mutable reference to the [`Some`] variant of an [`Option`].
1199 ///
1200 /// The iterator yields one value if the [`Option`] is a [`Some`], otherwise none.
1201 ///
1202 /// This `struct` is created by the [`Option::iter_mut`] function.
1203 ///
1204 /// [`Option`]: enum.Option.html
1205 /// [`Some`]: enum.Option.html#variant.Some
1206 /// [`Option::iter_mut`]: enum.Option.html#method.iter_mut
1207 #[stable(feature = "rust1", since = "1.0.0")]
1208 #[derive(Debug)]
1209 pub struct IterMut<'a, A: 'a> { inner: Item<&'a mut A> }
1210
1211 #[stable(feature = "rust1", since = "1.0.0")]
1212 impl<'a, A> Iterator for IterMut<'a, A> {
1213     type Item = &'a mut A;
1214
1215     #[inline]
1216     fn next(&mut self) -> Option<&'a mut A> { self.inner.next() }
1217     #[inline]
1218     fn size_hint(&self) -> (usize, Option<usize>) { self.inner.size_hint() }
1219 }
1220
1221 #[stable(feature = "rust1", since = "1.0.0")]
1222 impl<'a, A> DoubleEndedIterator for IterMut<'a, A> {
1223     #[inline]
1224     fn next_back(&mut self) -> Option<&'a mut A> { self.inner.next_back() }
1225 }
1226
1227 #[stable(feature = "rust1", since = "1.0.0")]
1228 impl<A> ExactSizeIterator for IterMut<'_, A> {}
1229
1230 #[stable(feature = "fused", since = "1.26.0")]
1231 impl<A> FusedIterator for IterMut<'_, A> {}
1232 #[unstable(feature = "trusted_len", issue = "37572")]
1233 unsafe impl<A> TrustedLen for IterMut<'_, A> {}
1234
1235 /// An iterator over the value in [`Some`] variant of an [`Option`].
1236 ///
1237 /// The iterator yields one value if the [`Option`] is a [`Some`], otherwise none.
1238 ///
1239 /// This `struct` is created by the [`Option::into_iter`] function.
1240 ///
1241 /// [`Option`]: enum.Option.html
1242 /// [`Some`]: enum.Option.html#variant.Some
1243 /// [`Option::into_iter`]: enum.Option.html#method.into_iter
1244 #[derive(Clone, Debug)]
1245 #[stable(feature = "rust1", since = "1.0.0")]
1246 pub struct IntoIter<A> { inner: Item<A> }
1247
1248 #[stable(feature = "rust1", since = "1.0.0")]
1249 impl<A> Iterator for IntoIter<A> {
1250     type Item = A;
1251
1252     #[inline]
1253     fn next(&mut self) -> Option<A> { self.inner.next() }
1254     #[inline]
1255     fn size_hint(&self) -> (usize, Option<usize>) { self.inner.size_hint() }
1256 }
1257
1258 #[stable(feature = "rust1", since = "1.0.0")]
1259 impl<A> DoubleEndedIterator for IntoIter<A> {
1260     #[inline]
1261     fn next_back(&mut self) -> Option<A> { self.inner.next_back() }
1262 }
1263
1264 #[stable(feature = "rust1", since = "1.0.0")]
1265 impl<A> ExactSizeIterator for IntoIter<A> {}
1266
1267 #[stable(feature = "fused", since = "1.26.0")]
1268 impl<A> FusedIterator for IntoIter<A> {}
1269
1270 #[unstable(feature = "trusted_len", issue = "37572")]
1271 unsafe impl<A> TrustedLen for IntoIter<A> {}
1272
1273 /////////////////////////////////////////////////////////////////////////////
1274 // FromIterator
1275 /////////////////////////////////////////////////////////////////////////////
1276
1277 #[stable(feature = "rust1", since = "1.0.0")]
1278 impl<A, V: FromIterator<A>> FromIterator<Option<A>> for Option<V> {
1279     /// Takes each element in the [`Iterator`]: if it is [`None`][Option::None],
1280     /// no further elements are taken, and the [`None`][Option::None] is
1281     /// returned. Should no [`None`][Option::None] occur, a container with the
1282     /// values of each [`Option`] is returned.
1283     ///
1284     /// # Examples
1285     ///
1286     /// Here is an example which increments every integer in a vector.
1287     /// We use the checked variant of `add` that returns `None` when the
1288     /// calculation would result in an overflow.
1289     ///
1290     /// ```
1291     /// let items = vec![0_u16, 1, 2];
1292     ///
1293     /// let res: Option<Vec<u16>> = items
1294     ///     .iter()
1295     ///     .map(|x| x.checked_add(1))
1296     ///     .collect();
1297     ///
1298     /// assert_eq!(res, Some(vec![1, 2, 3]));
1299     /// ```
1300     ///
1301     /// As you can see, this will return the expected, valid items.
1302     ///
1303     /// Here is another example that tries to subtract one from another list
1304     /// of integers, this time checking for underflow:
1305     ///
1306     /// ```
1307     /// let items = vec![2_u16, 1, 0];
1308     ///
1309     /// let res: Option<Vec<u16>> = items
1310     ///     .iter()
1311     ///     .map(|x| x.checked_sub(1))
1312     ///     .collect();
1313     ///
1314     /// assert_eq!(res, None);
1315     /// ```
1316     ///
1317     /// Since the last element is zero, it would underflow. Thus, the resulting
1318     /// value is `None`.
1319     ///
1320     /// Here is a variation on the previous example, showing that no
1321     /// further elements are taken from `iter` after the first `None`.
1322     ///
1323     /// ```
1324     /// let items = vec![3_u16, 2, 1, 10];
1325     ///
1326     /// let mut shared = 0;
1327     ///
1328     /// let res: Option<Vec<u16>> = items
1329     ///     .iter()
1330     ///     .map(|x| { shared += x; x.checked_sub(2) })
1331     ///     .collect();
1332     ///
1333     /// assert_eq!(res, None);
1334     /// assert_eq!(shared, 6);
1335     /// ```
1336     ///
1337     /// Since the third element caused an underflow, no further elements were taken,
1338     /// so the final value of `shared` is 6 (= `3 + 2 + 1`), not 16.
1339     ///
1340     /// [`Iterator`]: ../iter/trait.Iterator.html
1341     #[inline]
1342     fn from_iter<I: IntoIterator<Item=Option<A>>>(iter: I) -> Option<V> {
1343         // FIXME(#11084): This could be replaced with Iterator::scan when this
1344         // performance bug is closed.
1345
1346         struct Adapter<Iter> {
1347             iter: Iter,
1348             found_none: bool,
1349         }
1350
1351         impl<T, Iter: Iterator<Item=Option<T>>> Iterator for Adapter<Iter> {
1352             type Item = T;
1353
1354             #[inline]
1355             fn next(&mut self) -> Option<T> {
1356                 match self.iter.next() {
1357                     Some(Some(value)) => Some(value),
1358                     Some(None) => {
1359                         self.found_none = true;
1360                         None
1361                     }
1362                     None => None,
1363                 }
1364             }
1365
1366             #[inline]
1367             fn size_hint(&self) -> (usize, Option<usize>) {
1368                 if self.found_none {
1369                     (0, Some(0))
1370                 } else {
1371                     let (_, upper) = self.iter.size_hint();
1372                     (0, upper)
1373                 }
1374             }
1375         }
1376
1377         let mut adapter = Adapter { iter: iter.into_iter(), found_none: false };
1378         let v: V = FromIterator::from_iter(adapter.by_ref());
1379
1380         if adapter.found_none {
1381             None
1382         } else {
1383             Some(v)
1384         }
1385     }
1386 }
1387
1388 /// The error type that results from applying the try operator (`?`) to a `None` value. If you wish
1389 /// to allow `x?` (where `x` is an `Option<T>`) to be converted into your error type, you can
1390 /// implement `impl From<NoneError>` for `YourErrorType`. In that case, `x?` within a function that
1391 /// returns `Result<_, YourErrorType>` will translate a `None` value into an `Err` result.
1392 #[unstable(feature = "try_trait", issue = "42327")]
1393 #[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)]
1394 pub struct NoneError;
1395
1396 #[unstable(feature = "try_trait", issue = "42327")]
1397 impl<T> ops::Try for Option<T> {
1398     type Ok = T;
1399     type Error = NoneError;
1400
1401     #[inline]
1402     fn into_result(self) -> Result<T, NoneError> {
1403         self.ok_or(NoneError)
1404     }
1405
1406     #[inline]
1407     fn from_ok(v: T) -> Self {
1408         Some(v)
1409     }
1410
1411     #[inline]
1412     fn from_error(_: NoneError) -> Self {
1413         None
1414     }
1415 }
1416
1417 impl<T> Option<Option<T>> {
1418     /// Converts from `Option<Option<T>>` to `Option<T>`
1419     ///
1420     /// # Examples
1421     /// Basic usage:
1422     /// ```
1423     /// #![feature(option_flattening)]
1424     /// let x: Option<Option<u32>> = Some(Some(6));
1425     /// assert_eq!(Some(6), x.flatten());
1426     ///
1427     /// let x: Option<Option<u32>> = Some(None);
1428     /// assert_eq!(None, x.flatten());
1429     ///
1430     /// let x: Option<Option<u32>> = None;
1431     /// assert_eq!(None, x.flatten());
1432     /// ```
1433     /// Flattening once only removes one level of nesting:
1434     /// ```
1435     /// #![feature(option_flattening)]
1436     /// let x: Option<Option<Option<u32>>> = Some(Some(Some(6)));
1437     /// assert_eq!(Some(Some(6)), x.flatten());
1438     /// assert_eq!(Some(6), x.flatten().flatten());
1439     /// ```
1440     #[inline]
1441     #[unstable(feature = "option_flattening", issue = "60258")]
1442     pub fn flatten(self) -> Option<T> {
1443         self.and_then(convert::identity)
1444     }
1445 }