]> git.lizzy.rs Git - rust.git/blob - src/libcore/option.rs
Rollup merge of #62514 - stephaneyfx:box-ffi, r=nikomatsakis
[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" references. 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(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(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 // ignore-tidy-undocumented-unsafe
137
138 #![stable(feature = "rust1", since = "1.0.0")]
139
140 use crate::iter::{FromIterator, FusedIterator, TrustedLen};
141 use crate::pin::Pin;
142 use crate::{
143     convert, fmt, hint, mem,
144     ops::{self, Deref, DerefMut},
145 };
146
147 // Note that this is not a lang item per se, but it has a hidden dependency on
148 // `Iterator`, which is one. The compiler assumes that the `next` method of
149 // `Iterator` is an enumeration with one type parameter and two variants,
150 // which basically means it must be `Option`.
151
152 /// The `Option` type. See [the module level documentation](index.html) for more.
153 #[derive(Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)]
154 #[stable(feature = "rust1", since = "1.0.0")]
155 pub enum Option<T> {
156     /// No value
157     #[stable(feature = "rust1", since = "1.0.0")]
158     None,
159     /// Some value `T`
160     #[stable(feature = "rust1", since = "1.0.0")]
161     Some(#[stable(feature = "rust1", since = "1.0.0")] T),
162 }
163
164 /////////////////////////////////////////////////////////////////////////////
165 // Type implementation
166 /////////////////////////////////////////////////////////////////////////////
167
168 impl<T> Option<T> {
169     /////////////////////////////////////////////////////////////////////////
170     // Querying the contained values
171     /////////////////////////////////////////////////////////////////////////
172
173     /// Returns `true` if the option is a [`Some`] value.
174     ///
175     /// # Examples
176     ///
177     /// ```
178     /// let x: Option<u32> = Some(2);
179     /// assert_eq!(x.is_some(), true);
180     ///
181     /// let x: Option<u32> = None;
182     /// assert_eq!(x.is_some(), false);
183     /// ```
184     ///
185     /// [`Some`]: #variant.Some
186     #[must_use = "if you intended to assert that this has a value, consider `.unwrap()` instead"]
187     #[inline]
188     #[stable(feature = "rust1", since = "1.0.0")]
189     pub fn is_some(&self) -> bool {
190         match *self {
191             Some(_) => true,
192             None => false,
193         }
194     }
195
196     /// Returns `true` if the option is a [`None`] value.
197     ///
198     /// # Examples
199     ///
200     /// ```
201     /// let x: Option<u32> = Some(2);
202     /// assert_eq!(x.is_none(), false);
203     ///
204     /// let x: Option<u32> = None;
205     /// assert_eq!(x.is_none(), true);
206     /// ```
207     ///
208     /// [`None`]: #variant.None
209     #[must_use = "if you intended to assert that this doesn't have a value, consider \
210                   `.and_then(|| panic!(\"`Option` had a value when expected `None`\"))` instead"]
211     #[inline]
212     #[stable(feature = "rust1", since = "1.0.0")]
213     pub fn is_none(&self) -> bool {
214         !self.is_some()
215     }
216
217     /// Returns `true` if the option is a [`Some`] value containing the given value.
218     ///
219     /// # Examples
220     ///
221     /// ```
222     /// #![feature(option_result_contains)]
223     ///
224     /// let x: Option<u32> = Some(2);
225     /// assert_eq!(x.contains(&2), true);
226     ///
227     /// let x: Option<u32> = Some(3);
228     /// assert_eq!(x.contains(&2), false);
229     ///
230     /// let x: Option<u32> = None;
231     /// assert_eq!(x.contains(&2), false);
232     /// ```
233     #[must_use]
234     #[inline]
235     #[unstable(feature = "option_result_contains", issue = "62358")]
236     pub fn contains<U>(&self, x: &U) -> bool
237     where
238         U: PartialEq<T>,
239     {
240         match self {
241             Some(y) => x == y,
242             None => false,
243         }
244     }
245
246     /////////////////////////////////////////////////////////////////////////
247     // Adapter for working with references
248     /////////////////////////////////////////////////////////////////////////
249
250     /// Converts from `&Option<T>` to `Option<&T>`.
251     ///
252     /// # Examples
253     ///
254     /// Converts an `Option<`[`String`]`>` into an `Option<`[`usize`]`>`, preserving the original.
255     /// The [`map`] method takes the `self` argument by value, consuming the original,
256     /// so this technique uses `as_ref` to first take an `Option` to a reference
257     /// to the value inside the original.
258     ///
259     /// [`map`]: enum.Option.html#method.map
260     /// [`String`]: ../../std/string/struct.String.html
261     /// [`usize`]: ../../std/primitive.usize.html
262     ///
263     /// ```
264     /// let text: Option<String> = Some("Hello, world!".to_string());
265     /// // First, cast `Option<String>` to `Option<&String>` with `as_ref`,
266     /// // then consume *that* with `map`, leaving `text` on the stack.
267     /// let text_length: Option<usize> = text.as_ref().map(|s| s.len());
268     /// println!("still can print text: {:?}", text);
269     /// ```
270     #[inline]
271     #[stable(feature = "rust1", since = "1.0.0")]
272     pub fn as_ref(&self) -> Option<&T> {
273         match *self {
274             Some(ref x) => Some(x),
275             None => None,
276         }
277     }
278
279     /// Converts from `&mut Option<T>` to `Option<&mut T>`.
280     ///
281     /// # Examples
282     ///
283     /// ```
284     /// let mut x = Some(2);
285     /// match x.as_mut() {
286     ///     Some(v) => *v = 42,
287     ///     None => {},
288     /// }
289     /// assert_eq!(x, Some(42));
290     /// ```
291     #[inline]
292     #[stable(feature = "rust1", since = "1.0.0")]
293     pub fn as_mut(&mut self) -> Option<&mut T> {
294         match *self {
295             Some(ref mut x) => Some(x),
296             None => None,
297         }
298     }
299
300     /// Converts from [`Pin`]`<&Option<T>>` to `Option<`[`Pin`]`<&T>>`.
301     ///
302     /// [`Pin`]: ../pin/struct.Pin.html
303     #[inline]
304     #[stable(feature = "pin", since = "1.33.0")]
305     pub fn as_pin_ref(self: Pin<&Self>) -> Option<Pin<&T>> {
306         unsafe { Pin::get_ref(self).as_ref().map(|x| Pin::new_unchecked(x)) }
307     }
308
309     /// Converts from [`Pin`]`<&mut Option<T>>` to `Option<`[`Pin`]`<&mut T>>`.
310     ///
311     /// [`Pin`]: ../pin/struct.Pin.html
312     #[inline]
313     #[stable(feature = "pin", since = "1.33.0")]
314     pub fn as_pin_mut(self: Pin<&mut Self>) -> Option<Pin<&mut T>> {
315         unsafe { Pin::get_unchecked_mut(self).as_mut().map(|x| Pin::new_unchecked(x)) }
316     }
317
318     /////////////////////////////////////////////////////////////////////////
319     // Getting to contained values
320     /////////////////////////////////////////////////////////////////////////
321
322     /// Unwraps an option, yielding the content of a [`Some`].
323     ///
324     /// # Panics
325     ///
326     /// Panics if the value is a [`None`] with a custom panic message provided by
327     /// `msg`.
328     ///
329     /// [`Some`]: #variant.Some
330     /// [`None`]: #variant.None
331     ///
332     /// # Examples
333     ///
334     /// ```
335     /// let x = Some("value");
336     /// assert_eq!(x.expect("the world is ending"), "value");
337     /// ```
338     ///
339     /// ```{.should_panic}
340     /// let x: Option<&str> = None;
341     /// x.expect("the world is ending"); // panics with `the world is ending`
342     /// ```
343     #[inline]
344     #[stable(feature = "rust1", since = "1.0.0")]
345     pub fn expect(self, msg: &str) -> T {
346         match self {
347             Some(val) => val,
348             None => expect_failed(msg),
349         }
350     }
351
352     /// Moves the value `v` out of the `Option<T>` if it is [`Some(v)`].
353     ///
354     /// In general, because this function may panic, its use is discouraged.
355     /// Instead, prefer to use pattern matching and handle the [`None`]
356     /// case explicitly.
357     ///
358     /// # Panics
359     ///
360     /// Panics if the self value equals [`None`].
361     ///
362     /// [`Some(v)`]: #variant.Some
363     /// [`None`]: #variant.None
364     ///
365     /// # Examples
366     ///
367     /// ```
368     /// let x = Some("air");
369     /// assert_eq!(x.unwrap(), "air");
370     /// ```
371     ///
372     /// ```{.should_panic}
373     /// let x: Option<&str> = None;
374     /// assert_eq!(x.unwrap(), "air"); // fails
375     /// ```
376     #[inline]
377     #[stable(feature = "rust1", since = "1.0.0")]
378     pub fn unwrap(self) -> T {
379         match self {
380             Some(val) => val,
381             None => panic!("called `Option::unwrap()` on a `None` value"),
382         }
383     }
384
385     /// Returns the contained value or a default.
386     ///
387     /// Arguments passed to `unwrap_or` are eagerly evaluated; if you are passing
388     /// the result of a function call, it is recommended to use [`unwrap_or_else`],
389     /// which is lazily evaluated.
390     ///
391     /// [`unwrap_or_else`]: #method.unwrap_or_else
392     ///
393     /// # Examples
394     ///
395     /// ```
396     /// assert_eq!(Some("car").unwrap_or("bike"), "car");
397     /// assert_eq!(None.unwrap_or("bike"), "bike");
398     /// ```
399     #[inline]
400     #[stable(feature = "rust1", since = "1.0.0")]
401     pub fn unwrap_or(self, default: T) -> T {
402         match self {
403             Some(x) => x,
404             None => default,
405         }
406     }
407
408     /// Returns the contained value or computes it from a closure.
409     ///
410     /// # Examples
411     ///
412     /// ```
413     /// let k = 10;
414     /// assert_eq!(Some(4).unwrap_or_else(|| 2 * k), 4);
415     /// assert_eq!(None.unwrap_or_else(|| 2 * k), 20);
416     /// ```
417     #[inline]
418     #[stable(feature = "rust1", since = "1.0.0")]
419     pub fn unwrap_or_else<F: FnOnce() -> T>(self, f: F) -> T {
420         match self {
421             Some(x) => x,
422             None => f(),
423         }
424     }
425
426     /////////////////////////////////////////////////////////////////////////
427     // Transforming contained values
428     /////////////////////////////////////////////////////////////////////////
429
430     /// Maps an `Option<T>` to `Option<U>` by applying a function to a contained value.
431     ///
432     /// # Examples
433     ///
434     /// Converts an `Option<`[`String`]`>` into an `Option<`[`usize`]`>`, consuming the original:
435     ///
436     /// [`String`]: ../../std/string/struct.String.html
437     /// [`usize`]: ../../std/primitive.usize.html
438     ///
439     /// ```
440     /// let maybe_some_string = Some(String::from("Hello, World!"));
441     /// // `Option::map` takes self *by value*, consuming `maybe_some_string`
442     /// let maybe_some_len = maybe_some_string.map(|s| s.len());
443     ///
444     /// assert_eq!(maybe_some_len, Some(13));
445     /// ```
446     #[inline]
447     #[stable(feature = "rust1", since = "1.0.0")]
448     pub fn map<U, F: FnOnce(T) -> U>(self, f: F) -> Option<U> {
449         match self {
450             Some(x) => Some(f(x)),
451             None => None,
452         }
453     }
454
455     /// Applies a function to the contained value (if any),
456     /// or returns the provided default (if not).
457     ///
458     /// # Examples
459     ///
460     /// ```
461     /// let x = Some("foo");
462     /// assert_eq!(x.map_or(42, |v| v.len()), 3);
463     ///
464     /// let x: Option<&str> = None;
465     /// assert_eq!(x.map_or(42, |v| v.len()), 42);
466     /// ```
467     #[inline]
468     #[stable(feature = "rust1", since = "1.0.0")]
469     pub fn map_or<U, F: FnOnce(T) -> U>(self, default: U, f: F) -> U {
470         match self {
471             Some(t) => f(t),
472             None => default,
473         }
474     }
475
476     /// Applies a function to the contained value (if any),
477     /// or computes a default (if not).
478     ///
479     /// # Examples
480     ///
481     /// ```
482     /// let k = 21;
483     ///
484     /// let x = Some("foo");
485     /// assert_eq!(x.map_or_else(|| 2 * k, |v| v.len()), 3);
486     ///
487     /// let x: Option<&str> = None;
488     /// assert_eq!(x.map_or_else(|| 2 * k, |v| v.len()), 42);
489     /// ```
490     #[inline]
491     #[stable(feature = "rust1", since = "1.0.0")]
492     pub fn map_or_else<U, D: FnOnce() -> U, F: FnOnce(T) -> U>(self, default: D, f: F) -> U {
493         match self {
494             Some(t) => f(t),
495             None => default(),
496         }
497     }
498
499     /// Transforms the `Option<T>` into a [`Result<T, E>`], mapping [`Some(v)`] to
500     /// [`Ok(v)`] and [`None`] to [`Err(err)`].
501     ///
502     /// Arguments passed to `ok_or` are eagerly evaluated; if you are passing the
503     /// result of a function call, it is recommended to use [`ok_or_else`], which is
504     /// lazily evaluated.
505     ///
506     /// [`Result<T, E>`]: ../../std/result/enum.Result.html
507     /// [`Ok(v)`]: ../../std/result/enum.Result.html#variant.Ok
508     /// [`Err(err)`]: ../../std/result/enum.Result.html#variant.Err
509     /// [`None`]: #variant.None
510     /// [`Some(v)`]: #variant.Some
511     /// [`ok_or_else`]: #method.ok_or_else
512     ///
513     /// # Examples
514     ///
515     /// ```
516     /// let x = Some("foo");
517     /// assert_eq!(x.ok_or(0), Ok("foo"));
518     ///
519     /// let x: Option<&str> = None;
520     /// assert_eq!(x.ok_or(0), Err(0));
521     /// ```
522     #[inline]
523     #[stable(feature = "rust1", since = "1.0.0")]
524     pub fn ok_or<E>(self, err: E) -> Result<T, E> {
525         match self {
526             Some(v) => Ok(v),
527             None => Err(err),
528         }
529     }
530
531     /// Transforms the `Option<T>` into a [`Result<T, E>`], mapping [`Some(v)`] to
532     /// [`Ok(v)`] and [`None`] to [`Err(err())`].
533     ///
534     /// [`Result<T, E>`]: ../../std/result/enum.Result.html
535     /// [`Ok(v)`]: ../../std/result/enum.Result.html#variant.Ok
536     /// [`Err(err())`]: ../../std/result/enum.Result.html#variant.Err
537     /// [`None`]: #variant.None
538     /// [`Some(v)`]: #variant.Some
539     ///
540     /// # Examples
541     ///
542     /// ```
543     /// let x = Some("foo");
544     /// assert_eq!(x.ok_or_else(|| 0), Ok("foo"));
545     ///
546     /// let x: Option<&str> = None;
547     /// assert_eq!(x.ok_or_else(|| 0), Err(0));
548     /// ```
549     #[inline]
550     #[stable(feature = "rust1", since = "1.0.0")]
551     pub fn ok_or_else<E, F: FnOnce() -> E>(self, err: F) -> Result<T, E> {
552         match self {
553             Some(v) => Ok(v),
554             None => Err(err()),
555         }
556     }
557
558     /////////////////////////////////////////////////////////////////////////
559     // Iterator constructors
560     /////////////////////////////////////////////////////////////////////////
561
562     /// Returns an iterator over the possibly contained value.
563     ///
564     /// # Examples
565     ///
566     /// ```
567     /// let x = Some(4);
568     /// assert_eq!(x.iter().next(), Some(&4));
569     ///
570     /// let x: Option<u32> = None;
571     /// assert_eq!(x.iter().next(), None);
572     /// ```
573     #[inline]
574     #[stable(feature = "rust1", since = "1.0.0")]
575     pub fn iter(&self) -> Iter<'_, T> {
576         Iter { inner: Item { opt: self.as_ref() } }
577     }
578
579     /// Returns a mutable iterator over the possibly contained value.
580     ///
581     /// # Examples
582     ///
583     /// ```
584     /// let mut x = Some(4);
585     /// match x.iter_mut().next() {
586     ///     Some(v) => *v = 42,
587     ///     None => {},
588     /// }
589     /// assert_eq!(x, Some(42));
590     ///
591     /// let mut x: Option<u32> = None;
592     /// assert_eq!(x.iter_mut().next(), None);
593     /// ```
594     #[inline]
595     #[stable(feature = "rust1", since = "1.0.0")]
596     pub fn iter_mut(&mut self) -> IterMut<'_, T> {
597         IterMut { inner: Item { opt: self.as_mut() } }
598     }
599
600     /////////////////////////////////////////////////////////////////////////
601     // Boolean operations on the values, eager and lazy
602     /////////////////////////////////////////////////////////////////////////
603
604     /// Returns [`None`] if the option is [`None`], otherwise returns `optb`.
605     ///
606     /// [`None`]: #variant.None
607     ///
608     /// # Examples
609     ///
610     /// ```
611     /// let x = Some(2);
612     /// let y: Option<&str> = None;
613     /// assert_eq!(x.and(y), None);
614     ///
615     /// let x: Option<u32> = None;
616     /// let y = Some("foo");
617     /// assert_eq!(x.and(y), None);
618     ///
619     /// let x = Some(2);
620     /// let y = Some("foo");
621     /// assert_eq!(x.and(y), Some("foo"));
622     ///
623     /// let x: Option<u32> = None;
624     /// let y: Option<&str> = None;
625     /// assert_eq!(x.and(y), None);
626     /// ```
627     #[inline]
628     #[stable(feature = "rust1", since = "1.0.0")]
629     pub fn and<U>(self, optb: Option<U>) -> Option<U> {
630         match self {
631             Some(_) => optb,
632             None => None,
633         }
634     }
635
636     /// Returns [`None`] if the option is [`None`], otherwise calls `f` with the
637     /// wrapped value and returns the result.
638     ///
639     /// Some languages call this operation flatmap.
640     ///
641     /// [`None`]: #variant.None
642     ///
643     /// # Examples
644     ///
645     /// ```
646     /// fn sq(x: u32) -> Option<u32> { Some(x * x) }
647     /// fn nope(_: u32) -> Option<u32> { None }
648     ///
649     /// assert_eq!(Some(2).and_then(sq).and_then(sq), Some(16));
650     /// assert_eq!(Some(2).and_then(sq).and_then(nope), None);
651     /// assert_eq!(Some(2).and_then(nope).and_then(sq), None);
652     /// assert_eq!(None.and_then(sq).and_then(sq), None);
653     /// ```
654     #[inline]
655     #[stable(feature = "rust1", since = "1.0.0")]
656     pub fn and_then<U, F: FnOnce(T) -> Option<U>>(self, f: F) -> Option<U> {
657         match self {
658             Some(x) => f(x),
659             None => None,
660         }
661     }
662
663     /// Returns [`None`] if the option is [`None`], otherwise calls `predicate`
664     /// with the wrapped value and returns:
665     ///
666     /// - [`Some(t)`] if `predicate` returns `true` (where `t` is the wrapped
667     ///   value), and
668     /// - [`None`] if `predicate` returns `false`.
669     ///
670     /// This function works similar to [`Iterator::filter()`]. You can imagine
671     /// the `Option<T>` being an iterator over one or zero elements. `filter()`
672     /// lets you decide which elements to keep.
673     ///
674     /// # Examples
675     ///
676     /// ```rust
677     /// fn is_even(n: &i32) -> bool {
678     ///     n % 2 == 0
679     /// }
680     ///
681     /// assert_eq!(None.filter(is_even), None);
682     /// assert_eq!(Some(3).filter(is_even), None);
683     /// assert_eq!(Some(4).filter(is_even), Some(4));
684     /// ```
685     ///
686     /// [`None`]: #variant.None
687     /// [`Some(t)`]: #variant.Some
688     /// [`Iterator::filter()`]: ../../std/iter/trait.Iterator.html#method.filter
689     #[inline]
690     #[stable(feature = "option_filter", since = "1.27.0")]
691     pub fn filter<P: FnOnce(&T) -> bool>(self, predicate: P) -> Self {
692         if let Some(x) = self {
693             if predicate(&x) {
694                 return Some(x);
695             }
696         }
697         None
698     }
699
700     /// Returns the option if it contains a value, otherwise returns `optb`.
701     ///
702     /// Arguments passed to `or` are eagerly evaluated; if you are passing the
703     /// result of a function call, it is recommended to use [`or_else`], which is
704     /// lazily evaluated.
705     ///
706     /// [`or_else`]: #method.or_else
707     ///
708     /// # Examples
709     ///
710     /// ```
711     /// let x = Some(2);
712     /// let y = None;
713     /// assert_eq!(x.or(y), Some(2));
714     ///
715     /// let x = None;
716     /// let y = Some(100);
717     /// assert_eq!(x.or(y), Some(100));
718     ///
719     /// let x = Some(2);
720     /// let y = Some(100);
721     /// assert_eq!(x.or(y), Some(2));
722     ///
723     /// let x: Option<u32> = None;
724     /// let y = None;
725     /// assert_eq!(x.or(y), None);
726     /// ```
727     #[inline]
728     #[stable(feature = "rust1", since = "1.0.0")]
729     pub fn or(self, optb: Option<T>) -> Option<T> {
730         match self {
731             Some(_) => self,
732             None => optb,
733         }
734     }
735
736     /// Returns the option if it contains a value, otherwise calls `f` and
737     /// returns the result.
738     ///
739     /// # Examples
740     ///
741     /// ```
742     /// fn nobody() -> Option<&'static str> { None }
743     /// fn vikings() -> Option<&'static str> { Some("vikings") }
744     ///
745     /// assert_eq!(Some("barbarians").or_else(vikings), Some("barbarians"));
746     /// assert_eq!(None.or_else(vikings), Some("vikings"));
747     /// assert_eq!(None.or_else(nobody), None);
748     /// ```
749     #[inline]
750     #[stable(feature = "rust1", since = "1.0.0")]
751     pub fn or_else<F: FnOnce() -> Option<T>>(self, f: F) -> Option<T> {
752         match self {
753             Some(_) => self,
754             None => f(),
755         }
756     }
757
758     /// Returns [`Some`] if exactly one of `self`, `optb` is [`Some`], otherwise returns [`None`].
759     ///
760     /// [`Some`]: #variant.Some
761     /// [`None`]: #variant.None
762     ///
763     /// # Examples
764     ///
765     /// ```
766     /// let x = Some(2);
767     /// let y: Option<u32> = None;
768     /// assert_eq!(x.xor(y), Some(2));
769     ///
770     /// let x: Option<u32> = None;
771     /// let y = Some(2);
772     /// assert_eq!(x.xor(y), Some(2));
773     ///
774     /// let x = Some(2);
775     /// let y = Some(2);
776     /// assert_eq!(x.xor(y), None);
777     ///
778     /// let x: Option<u32> = None;
779     /// let y: Option<u32> = None;
780     /// assert_eq!(x.xor(y), None);
781     /// ```
782     #[inline]
783     #[stable(feature = "option_xor", since = "1.37.0")]
784     pub fn xor(self, optb: Option<T>) -> Option<T> {
785         match (self, optb) {
786             (Some(a), None) => Some(a),
787             (None, Some(b)) => Some(b),
788             _ => None,
789         }
790     }
791
792     /////////////////////////////////////////////////////////////////////////
793     // Entry-like operations to insert if None and return a reference
794     /////////////////////////////////////////////////////////////////////////
795
796     /// Inserts `v` into the option if it is [`None`], then
797     /// returns a mutable reference to the contained value.
798     ///
799     /// [`None`]: #variant.None
800     ///
801     /// # Examples
802     ///
803     /// ```
804     /// let mut x = None;
805     ///
806     /// {
807     ///     let y: &mut u32 = x.get_or_insert(5);
808     ///     assert_eq!(y, &5);
809     ///
810     ///     *y = 7;
811     /// }
812     ///
813     /// assert_eq!(x, Some(7));
814     /// ```
815     #[inline]
816     #[stable(feature = "option_entry", since = "1.20.0")]
817     pub fn get_or_insert(&mut self, v: T) -> &mut T {
818         self.get_or_insert_with(|| v)
819     }
820
821     /// Inserts a value computed from `f` into the option if it is [`None`], then
822     /// returns a mutable reference to the contained value.
823     ///
824     /// [`None`]: #variant.None
825     ///
826     /// # Examples
827     ///
828     /// ```
829     /// let mut x = None;
830     ///
831     /// {
832     ///     let y: &mut u32 = x.get_or_insert_with(|| 5);
833     ///     assert_eq!(y, &5);
834     ///
835     ///     *y = 7;
836     /// }
837     ///
838     /// assert_eq!(x, Some(7));
839     /// ```
840     #[inline]
841     #[stable(feature = "option_entry", since = "1.20.0")]
842     pub fn get_or_insert_with<F: FnOnce() -> T>(&mut self, f: F) -> &mut T {
843         if let None = *self {
844             *self = Some(f());
845         }
846
847         match *self {
848             Some(ref mut v) => v,
849             None => unsafe { hint::unreachable_unchecked() },
850         }
851     }
852
853     /////////////////////////////////////////////////////////////////////////
854     // Misc
855     /////////////////////////////////////////////////////////////////////////
856
857     /// Takes the value out of the option, leaving a [`None`] in its place.
858     ///
859     /// [`None`]: #variant.None
860     ///
861     /// # Examples
862     ///
863     /// ```
864     /// let mut x = Some(2);
865     /// let y = x.take();
866     /// assert_eq!(x, None);
867     /// assert_eq!(y, Some(2));
868     ///
869     /// let mut x: Option<u32> = None;
870     /// let y = x.take();
871     /// assert_eq!(x, None);
872     /// assert_eq!(y, None);
873     /// ```
874     #[inline]
875     #[stable(feature = "rust1", since = "1.0.0")]
876     pub fn take(&mut self) -> Option<T> {
877         mem::take(self)
878     }
879
880     /// Replaces the actual value in the option by the value given in parameter,
881     /// returning the old value if present,
882     /// leaving a [`Some`] in its place without deinitializing either one.
883     ///
884     /// [`Some`]: #variant.Some
885     ///
886     /// # Examples
887     ///
888     /// ```
889     /// let mut x = Some(2);
890     /// let old = x.replace(5);
891     /// assert_eq!(x, Some(5));
892     /// assert_eq!(old, Some(2));
893     ///
894     /// let mut x = None;
895     /// let old = x.replace(3);
896     /// assert_eq!(x, Some(3));
897     /// assert_eq!(old, None);
898     /// ```
899     #[inline]
900     #[stable(feature = "option_replace", since = "1.31.0")]
901     pub fn replace(&mut self, value: T) -> Option<T> {
902         mem::replace(self, Some(value))
903     }
904 }
905
906 impl<T: Copy> Option<&T> {
907     /// Maps an `Option<&T>` to an `Option<T>` by copying the contents of the
908     /// option.
909     ///
910     /// # Examples
911     ///
912     /// ```
913     /// let x = 12;
914     /// let opt_x = Some(&x);
915     /// assert_eq!(opt_x, Some(&12));
916     /// let copied = opt_x.copied();
917     /// assert_eq!(copied, Some(12));
918     /// ```
919     #[stable(feature = "copied", since = "1.35.0")]
920     pub fn copied(self) -> Option<T> {
921         self.map(|&t| t)
922     }
923 }
924
925 impl<T: Copy> Option<&mut T> {
926     /// Maps an `Option<&mut T>` to an `Option<T>` by copying the contents of the
927     /// option.
928     ///
929     /// # Examples
930     ///
931     /// ```
932     /// let mut x = 12;
933     /// let opt_x = Some(&mut x);
934     /// assert_eq!(opt_x, Some(&mut 12));
935     /// let copied = opt_x.copied();
936     /// assert_eq!(copied, Some(12));
937     /// ```
938     #[stable(feature = "copied", since = "1.35.0")]
939     pub fn copied(self) -> Option<T> {
940         self.map(|&mut t| t)
941     }
942 }
943
944 impl<T: Clone> Option<&T> {
945     /// Maps an `Option<&T>` to an `Option<T>` by cloning the contents of the
946     /// option.
947     ///
948     /// # Examples
949     ///
950     /// ```
951     /// let x = 12;
952     /// let opt_x = Some(&x);
953     /// assert_eq!(opt_x, Some(&12));
954     /// let cloned = opt_x.cloned();
955     /// assert_eq!(cloned, Some(12));
956     /// ```
957     #[stable(feature = "rust1", since = "1.0.0")]
958     pub fn cloned(self) -> Option<T> {
959         self.map(|t| t.clone())
960     }
961 }
962
963 impl<T: Clone> Option<&mut T> {
964     /// Maps an `Option<&mut T>` to an `Option<T>` by cloning the contents of the
965     /// option.
966     ///
967     /// # Examples
968     ///
969     /// ```
970     /// let mut x = 12;
971     /// let opt_x = Some(&mut x);
972     /// assert_eq!(opt_x, Some(&mut 12));
973     /// let cloned = opt_x.cloned();
974     /// assert_eq!(cloned, Some(12));
975     /// ```
976     #[stable(since = "1.26.0", feature = "option_ref_mut_cloned")]
977     pub fn cloned(self) -> Option<T> {
978         self.map(|t| t.clone())
979     }
980 }
981
982 impl<T: fmt::Debug> Option<T> {
983     /// Unwraps an option, expecting [`None`] and returning nothing.
984     ///
985     /// # Panics
986     ///
987     /// Panics if the value is a [`Some`], with a panic message including the
988     /// passed message, and the content of the [`Some`].
989     ///
990     /// [`Some`]: #variant.Some
991     /// [`None`]: #variant.None
992     ///
993     /// # Examples
994     ///
995     /// ```
996     /// #![feature(option_expect_none)]
997     ///
998     /// use std::collections::HashMap;
999     /// let mut squares = HashMap::new();
1000     /// for i in -10..=10 {
1001     ///     // This will not panic, since all keys are unique.
1002     ///     squares.insert(i, i * i).expect_none("duplicate key");
1003     /// }
1004     /// ```
1005     ///
1006     /// ```{.should_panic}
1007     /// #![feature(option_expect_none)]
1008     ///
1009     /// use std::collections::HashMap;
1010     /// let mut sqrts = HashMap::new();
1011     /// for i in -10..=10 {
1012     ///     // This will panic, since both negative and positive `i` will
1013     ///     // insert the same `i * i` key, returning the old `Some(i)`.
1014     ///     sqrts.insert(i * i, i).expect_none("duplicate key");
1015     /// }
1016     /// ```
1017     #[inline]
1018     #[unstable(feature = "option_expect_none", reason = "newly added", issue = "62633")]
1019     pub fn expect_none(self, msg: &str) {
1020         if let Some(val) = self {
1021             expect_none_failed(msg, &val);
1022         }
1023     }
1024
1025     /// Unwraps an option, expecting [`None`] and returning nothing.
1026     ///
1027     /// # Panics
1028     ///
1029     /// Panics if the value is a [`Some`], with a custom panic message provided
1030     /// by the [`Some`]'s value.
1031     ///
1032     /// [`Some(v)`]: #variant.Some
1033     /// [`None`]: #variant.None
1034     ///
1035     /// # Examples
1036     ///
1037     /// ```
1038     /// #![feature(option_unwrap_none)]
1039     ///
1040     /// use std::collections::HashMap;
1041     /// let mut squares = HashMap::new();
1042     /// for i in -10..=10 {
1043     ///     // This will not panic, since all keys are unique.
1044     ///     squares.insert(i, i * i).unwrap_none();
1045     /// }
1046     /// ```
1047     ///
1048     /// ```{.should_panic}
1049     /// #![feature(option_unwrap_none)]
1050     ///
1051     /// use std::collections::HashMap;
1052     /// let mut sqrts = HashMap::new();
1053     /// for i in -10..=10 {
1054     ///     // This will panic, since both negative and positive `i` will
1055     ///     // insert the same `i * i` key, returning the old `Some(i)`.
1056     ///     sqrts.insert(i * i, i).unwrap_none();
1057     /// }
1058     /// ```
1059     #[inline]
1060     #[unstable(feature = "option_unwrap_none", reason = "newly added", issue = "62633")]
1061     pub fn unwrap_none(self) {
1062         if let Some(val) = self {
1063             expect_none_failed("called `Option::unwrap_none()` on a `Some` value", &val);
1064         }
1065     }
1066 }
1067
1068 impl<T: Default> Option<T> {
1069     /// Returns the contained value or a default
1070     ///
1071     /// Consumes the `self` argument then, if [`Some`], returns the contained
1072     /// value, otherwise if [`None`], returns the [default value] for that
1073     /// type.
1074     ///
1075     /// # Examples
1076     ///
1077     /// Converts a string to an integer, turning poorly-formed strings
1078     /// into 0 (the default value for integers). [`parse`] converts
1079     /// a string to any other type that implements [`FromStr`], returning
1080     /// [`None`] on error.
1081     ///
1082     /// ```
1083     /// let good_year_from_input = "1909";
1084     /// let bad_year_from_input = "190blarg";
1085     /// let good_year = good_year_from_input.parse().ok().unwrap_or_default();
1086     /// let bad_year = bad_year_from_input.parse().ok().unwrap_or_default();
1087     ///
1088     /// assert_eq!(1909, good_year);
1089     /// assert_eq!(0, bad_year);
1090     /// ```
1091     ///
1092     /// [`Some`]: #variant.Some
1093     /// [`None`]: #variant.None
1094     /// [default value]: ../default/trait.Default.html#tymethod.default
1095     /// [`parse`]: ../../std/primitive.str.html#method.parse
1096     /// [`FromStr`]: ../../std/str/trait.FromStr.html
1097     #[inline]
1098     #[stable(feature = "rust1", since = "1.0.0")]
1099     pub fn unwrap_or_default(self) -> T {
1100         match self {
1101             Some(x) => x,
1102             None => Default::default(),
1103         }
1104     }
1105 }
1106
1107 impl<T: Deref> Option<T> {
1108     /// Converts from `Option<T>` (or `&Option<T>`) to `Option<&T::Target>`.
1109     ///
1110     /// Leaves the original Option in-place, creating a new one with a reference
1111     /// to the original one, additionally coercing the contents via [`Deref`].
1112     ///
1113     /// [`Deref`]: ../../std/ops/trait.Deref.html
1114     ///
1115     /// # Examples
1116     ///
1117     /// ```
1118     /// let x: Option<String> = Some("hey".to_owned());
1119     /// assert_eq!(x.as_deref(), Some("hey"));
1120     ///
1121     /// let x: Option<String> = None;
1122     /// assert_eq!(x.as_deref(), None);
1123     /// ```
1124     #[stable(feature = "option_deref", since = "1.40.0")]
1125     pub fn as_deref(&self) -> Option<&T::Target> {
1126         self.as_ref().map(|t| t.deref())
1127     }
1128 }
1129
1130 impl<T: DerefMut> Option<T> {
1131     /// Converts from `Option<T>` (or `&mut Option<T>`) to `Option<&mut T::Target>`.
1132     ///
1133     /// Leaves the original `Option` in-place, creating a new one containing a mutable reference to
1134     /// the inner type's `Deref::Target` type.
1135     ///
1136     /// # Examples
1137     ///
1138     /// ```
1139     /// let mut x: Option<String> = Some("hey".to_owned());
1140     /// assert_eq!(x.as_deref_mut().map(|x| {
1141     ///     x.make_ascii_uppercase();
1142     ///     x
1143     /// }), Some("HEY".to_owned().as_mut_str()));
1144     /// ```
1145     #[stable(feature = "option_deref", since = "1.40.0")]
1146     pub fn as_deref_mut(&mut self) -> Option<&mut T::Target> {
1147         self.as_mut().map(|t| t.deref_mut())
1148     }
1149 }
1150
1151 impl<T, E> Option<Result<T, E>> {
1152     /// Transposes an `Option` of a [`Result`] into a [`Result`] of an `Option`.
1153     ///
1154     /// [`None`] will be mapped to [`Ok`]`(`[`None`]`)`.
1155     /// [`Some`]`(`[`Ok`]`(_))` and [`Some`]`(`[`Err`]`(_))` will be mapped to
1156     /// [`Ok`]`(`[`Some`]`(_))` and [`Err`]`(_)`.
1157     ///
1158     /// [`None`]: #variant.None
1159     /// [`Ok`]: ../../std/result/enum.Result.html#variant.Ok
1160     /// [`Some`]: #variant.Some
1161     /// [`Err`]: ../../std/result/enum.Result.html#variant.Err
1162     ///
1163     /// # Examples
1164     ///
1165     /// ```
1166     /// #[derive(Debug, Eq, PartialEq)]
1167     /// struct SomeErr;
1168     ///
1169     /// let x: Result<Option<i32>, SomeErr> = Ok(Some(5));
1170     /// let y: Option<Result<i32, SomeErr>> = Some(Ok(5));
1171     /// assert_eq!(x, y.transpose());
1172     /// ```
1173     #[inline]
1174     #[stable(feature = "transpose_result", since = "1.33.0")]
1175     pub fn transpose(self) -> Result<Option<T>, E> {
1176         match self {
1177             Some(Ok(x)) => Ok(Some(x)),
1178             Some(Err(e)) => Err(e),
1179             None => Ok(None),
1180         }
1181     }
1182 }
1183
1184 // This is a separate function to reduce the code size of .expect() itself.
1185 #[inline(never)]
1186 #[cold]
1187 fn expect_failed(msg: &str) -> ! {
1188     panic!("{}", msg)
1189 }
1190
1191 // This is a separate function to reduce the code size of .expect_none() itself.
1192 #[inline(never)]
1193 #[cold]
1194 fn expect_none_failed(msg: &str, value: &dyn fmt::Debug) -> ! {
1195     panic!("{}: {:?}", msg, value)
1196 }
1197
1198 /////////////////////////////////////////////////////////////////////////////
1199 // Trait implementations
1200 /////////////////////////////////////////////////////////////////////////////
1201
1202 #[stable(feature = "rust1", since = "1.0.0")]
1203 impl<T: Clone> Clone for Option<T> {
1204     #[inline]
1205     fn clone(&self) -> Self {
1206         match self {
1207             Some(x) => Some(x.clone()),
1208             None => None,
1209         }
1210     }
1211
1212     #[inline]
1213     fn clone_from(&mut self, source: &Self) {
1214         match (self, source) {
1215             (Some(to), Some(from)) => to.clone_from(from),
1216             (to, from) => *to = from.clone(),
1217         }
1218     }
1219 }
1220
1221 #[stable(feature = "rust1", since = "1.0.0")]
1222 impl<T> Default for Option<T> {
1223     /// Returns [`None`][Option::None].
1224     ///
1225     /// # Examples
1226     ///
1227     /// ```
1228     /// let opt: Option<u32> = Option::default();
1229     /// assert!(opt.is_none());
1230     /// ```
1231     #[inline]
1232     fn default() -> Option<T> {
1233         None
1234     }
1235 }
1236
1237 #[stable(feature = "rust1", since = "1.0.0")]
1238 impl<T> IntoIterator for Option<T> {
1239     type Item = T;
1240     type IntoIter = IntoIter<T>;
1241
1242     /// Returns a consuming iterator over the possibly contained value.
1243     ///
1244     /// # Examples
1245     ///
1246     /// ```
1247     /// let x = Some("string");
1248     /// let v: Vec<&str> = x.into_iter().collect();
1249     /// assert_eq!(v, ["string"]);
1250     ///
1251     /// let x = None;
1252     /// let v: Vec<&str> = x.into_iter().collect();
1253     /// assert!(v.is_empty());
1254     /// ```
1255     #[inline]
1256     fn into_iter(self) -> IntoIter<T> {
1257         IntoIter { inner: Item { opt: self } }
1258     }
1259 }
1260
1261 #[stable(since = "1.4.0", feature = "option_iter")]
1262 impl<'a, T> IntoIterator for &'a Option<T> {
1263     type Item = &'a T;
1264     type IntoIter = Iter<'a, T>;
1265
1266     fn into_iter(self) -> Iter<'a, T> {
1267         self.iter()
1268     }
1269 }
1270
1271 #[stable(since = "1.4.0", feature = "option_iter")]
1272 impl<'a, T> IntoIterator for &'a mut Option<T> {
1273     type Item = &'a mut T;
1274     type IntoIter = IterMut<'a, T>;
1275
1276     fn into_iter(self) -> IterMut<'a, T> {
1277         self.iter_mut()
1278     }
1279 }
1280
1281 #[stable(since = "1.12.0", feature = "option_from")]
1282 impl<T> From<T> for Option<T> {
1283     fn from(val: T) -> Option<T> {
1284         Some(val)
1285     }
1286 }
1287
1288 #[stable(feature = "option_ref_from_ref_option", since = "1.30.0")]
1289 impl<'a, T> From<&'a Option<T>> for Option<&'a T> {
1290     fn from(o: &'a Option<T>) -> Option<&'a T> {
1291         o.as_ref()
1292     }
1293 }
1294
1295 #[stable(feature = "option_ref_from_ref_option", since = "1.30.0")]
1296 impl<'a, T> From<&'a mut Option<T>> for Option<&'a mut T> {
1297     fn from(o: &'a mut Option<T>) -> Option<&'a mut T> {
1298         o.as_mut()
1299     }
1300 }
1301
1302 /////////////////////////////////////////////////////////////////////////////
1303 // The Option Iterators
1304 /////////////////////////////////////////////////////////////////////////////
1305
1306 #[derive(Clone, Debug)]
1307 struct Item<A> {
1308     opt: Option<A>,
1309 }
1310
1311 impl<A> Iterator for Item<A> {
1312     type Item = A;
1313
1314     #[inline]
1315     fn next(&mut self) -> Option<A> {
1316         self.opt.take()
1317     }
1318
1319     #[inline]
1320     fn size_hint(&self) -> (usize, Option<usize>) {
1321         match self.opt {
1322             Some(_) => (1, Some(1)),
1323             None => (0, Some(0)),
1324         }
1325     }
1326 }
1327
1328 impl<A> DoubleEndedIterator for Item<A> {
1329     #[inline]
1330     fn next_back(&mut self) -> Option<A> {
1331         self.opt.take()
1332     }
1333 }
1334
1335 impl<A> ExactSizeIterator for Item<A> {}
1336 impl<A> FusedIterator for Item<A> {}
1337 unsafe impl<A> TrustedLen for Item<A> {}
1338
1339 /// An iterator over a reference to the [`Some`] variant of an [`Option`].
1340 ///
1341 /// The iterator yields one value if the [`Option`] is a [`Some`], otherwise none.
1342 ///
1343 /// This `struct` is created by the [`Option::iter`] function.
1344 ///
1345 /// [`Option`]: enum.Option.html
1346 /// [`Some`]: enum.Option.html#variant.Some
1347 /// [`Option::iter`]: enum.Option.html#method.iter
1348 #[stable(feature = "rust1", since = "1.0.0")]
1349 #[derive(Debug)]
1350 pub struct Iter<'a, A: 'a> {
1351     inner: Item<&'a A>,
1352 }
1353
1354 #[stable(feature = "rust1", since = "1.0.0")]
1355 impl<'a, A> Iterator for Iter<'a, A> {
1356     type Item = &'a A;
1357
1358     #[inline]
1359     fn next(&mut self) -> Option<&'a A> {
1360         self.inner.next()
1361     }
1362     #[inline]
1363     fn size_hint(&self) -> (usize, Option<usize>) {
1364         self.inner.size_hint()
1365     }
1366 }
1367
1368 #[stable(feature = "rust1", since = "1.0.0")]
1369 impl<'a, A> DoubleEndedIterator for Iter<'a, A> {
1370     #[inline]
1371     fn next_back(&mut self) -> Option<&'a A> {
1372         self.inner.next_back()
1373     }
1374 }
1375
1376 #[stable(feature = "rust1", since = "1.0.0")]
1377 impl<A> ExactSizeIterator for Iter<'_, A> {}
1378
1379 #[stable(feature = "fused", since = "1.26.0")]
1380 impl<A> FusedIterator for Iter<'_, A> {}
1381
1382 #[unstable(feature = "trusted_len", issue = "37572")]
1383 unsafe impl<A> TrustedLen for Iter<'_, A> {}
1384
1385 #[stable(feature = "rust1", since = "1.0.0")]
1386 impl<A> Clone for Iter<'_, A> {
1387     #[inline]
1388     fn clone(&self) -> Self {
1389         Iter { inner: self.inner.clone() }
1390     }
1391 }
1392
1393 /// An iterator over a mutable reference to the [`Some`] variant of an [`Option`].
1394 ///
1395 /// The iterator yields one value if the [`Option`] is a [`Some`], otherwise none.
1396 ///
1397 /// This `struct` is created by the [`Option::iter_mut`] function.
1398 ///
1399 /// [`Option`]: enum.Option.html
1400 /// [`Some`]: enum.Option.html#variant.Some
1401 /// [`Option::iter_mut`]: enum.Option.html#method.iter_mut
1402 #[stable(feature = "rust1", since = "1.0.0")]
1403 #[derive(Debug)]
1404 pub struct IterMut<'a, A: 'a> {
1405     inner: Item<&'a mut A>,
1406 }
1407
1408 #[stable(feature = "rust1", since = "1.0.0")]
1409 impl<'a, A> Iterator for IterMut<'a, A> {
1410     type Item = &'a mut A;
1411
1412     #[inline]
1413     fn next(&mut self) -> Option<&'a mut A> {
1414         self.inner.next()
1415     }
1416     #[inline]
1417     fn size_hint(&self) -> (usize, Option<usize>) {
1418         self.inner.size_hint()
1419     }
1420 }
1421
1422 #[stable(feature = "rust1", since = "1.0.0")]
1423 impl<'a, A> DoubleEndedIterator for IterMut<'a, A> {
1424     #[inline]
1425     fn next_back(&mut self) -> Option<&'a mut A> {
1426         self.inner.next_back()
1427     }
1428 }
1429
1430 #[stable(feature = "rust1", since = "1.0.0")]
1431 impl<A> ExactSizeIterator for IterMut<'_, A> {}
1432
1433 #[stable(feature = "fused", since = "1.26.0")]
1434 impl<A> FusedIterator for IterMut<'_, A> {}
1435 #[unstable(feature = "trusted_len", issue = "37572")]
1436 unsafe impl<A> TrustedLen for IterMut<'_, A> {}
1437
1438 /// An iterator over the value in [`Some`] variant of an [`Option`].
1439 ///
1440 /// The iterator yields one value if the [`Option`] is a [`Some`], otherwise none.
1441 ///
1442 /// This `struct` is created by the [`Option::into_iter`] function.
1443 ///
1444 /// [`Option`]: enum.Option.html
1445 /// [`Some`]: enum.Option.html#variant.Some
1446 /// [`Option::into_iter`]: enum.Option.html#method.into_iter
1447 #[derive(Clone, Debug)]
1448 #[stable(feature = "rust1", since = "1.0.0")]
1449 pub struct IntoIter<A> {
1450     inner: Item<A>,
1451 }
1452
1453 #[stable(feature = "rust1", since = "1.0.0")]
1454 impl<A> Iterator for IntoIter<A> {
1455     type Item = A;
1456
1457     #[inline]
1458     fn next(&mut self) -> Option<A> {
1459         self.inner.next()
1460     }
1461     #[inline]
1462     fn size_hint(&self) -> (usize, Option<usize>) {
1463         self.inner.size_hint()
1464     }
1465 }
1466
1467 #[stable(feature = "rust1", since = "1.0.0")]
1468 impl<A> DoubleEndedIterator for IntoIter<A> {
1469     #[inline]
1470     fn next_back(&mut self) -> Option<A> {
1471         self.inner.next_back()
1472     }
1473 }
1474
1475 #[stable(feature = "rust1", since = "1.0.0")]
1476 impl<A> ExactSizeIterator for IntoIter<A> {}
1477
1478 #[stable(feature = "fused", since = "1.26.0")]
1479 impl<A> FusedIterator for IntoIter<A> {}
1480
1481 #[unstable(feature = "trusted_len", issue = "37572")]
1482 unsafe impl<A> TrustedLen for IntoIter<A> {}
1483
1484 /////////////////////////////////////////////////////////////////////////////
1485 // FromIterator
1486 /////////////////////////////////////////////////////////////////////////////
1487
1488 #[stable(feature = "rust1", since = "1.0.0")]
1489 impl<A, V: FromIterator<A>> FromIterator<Option<A>> for Option<V> {
1490     /// Takes each element in the [`Iterator`]: if it is [`None`][Option::None],
1491     /// no further elements are taken, and the [`None`][Option::None] is
1492     /// returned. Should no [`None`][Option::None] occur, a container with the
1493     /// values of each [`Option`] is returned.
1494     ///
1495     /// # Examples
1496     ///
1497     /// Here is an example which increments every integer in a vector.
1498     /// We use the checked variant of `add` that returns `None` when the
1499     /// calculation would result in an overflow.
1500     ///
1501     /// ```
1502     /// let items = vec![0_u16, 1, 2];
1503     ///
1504     /// let res: Option<Vec<u16>> = items
1505     ///     .iter()
1506     ///     .map(|x| x.checked_add(1))
1507     ///     .collect();
1508     ///
1509     /// assert_eq!(res, Some(vec![1, 2, 3]));
1510     /// ```
1511     ///
1512     /// As you can see, this will return the expected, valid items.
1513     ///
1514     /// Here is another example that tries to subtract one from another list
1515     /// of integers, this time checking for underflow:
1516     ///
1517     /// ```
1518     /// let items = vec![2_u16, 1, 0];
1519     ///
1520     /// let res: Option<Vec<u16>> = items
1521     ///     .iter()
1522     ///     .map(|x| x.checked_sub(1))
1523     ///     .collect();
1524     ///
1525     /// assert_eq!(res, None);
1526     /// ```
1527     ///
1528     /// Since the last element is zero, it would underflow. Thus, the resulting
1529     /// value is `None`.
1530     ///
1531     /// Here is a variation on the previous example, showing that no
1532     /// further elements are taken from `iter` after the first `None`.
1533     ///
1534     /// ```
1535     /// let items = vec![3_u16, 2, 1, 10];
1536     ///
1537     /// let mut shared = 0;
1538     ///
1539     /// let res: Option<Vec<u16>> = items
1540     ///     .iter()
1541     ///     .map(|x| { shared += x; x.checked_sub(2) })
1542     ///     .collect();
1543     ///
1544     /// assert_eq!(res, None);
1545     /// assert_eq!(shared, 6);
1546     /// ```
1547     ///
1548     /// Since the third element caused an underflow, no further elements were taken,
1549     /// so the final value of `shared` is 6 (= `3 + 2 + 1`), not 16.
1550     ///
1551     /// [`Iterator`]: ../iter/trait.Iterator.html
1552     #[inline]
1553     fn from_iter<I: IntoIterator<Item = Option<A>>>(iter: I) -> Option<V> {
1554         // FIXME(#11084): This could be replaced with Iterator::scan when this
1555         // performance bug is closed.
1556
1557         iter.into_iter().map(|x| x.ok_or(())).collect::<Result<_, _>>().ok()
1558     }
1559 }
1560
1561 /// The error type that results from applying the try operator (`?`) to a `None` value. If you wish
1562 /// to allow `x?` (where `x` is an `Option<T>`) to be converted into your error type, you can
1563 /// implement `impl From<NoneError>` for `YourErrorType`. In that case, `x?` within a function that
1564 /// returns `Result<_, YourErrorType>` will translate a `None` value into an `Err` result.
1565 #[unstable(feature = "try_trait", issue = "42327")]
1566 #[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)]
1567 pub struct NoneError;
1568
1569 #[unstable(feature = "try_trait", issue = "42327")]
1570 impl<T> ops::Try for Option<T> {
1571     type Ok = T;
1572     type Error = NoneError;
1573
1574     #[inline]
1575     fn into_result(self) -> Result<T, NoneError> {
1576         self.ok_or(NoneError)
1577     }
1578
1579     #[inline]
1580     fn from_ok(v: T) -> Self {
1581         Some(v)
1582     }
1583
1584     #[inline]
1585     fn from_error(_: NoneError) -> Self {
1586         None
1587     }
1588 }
1589
1590 impl<T> Option<Option<T>> {
1591     /// Converts from `Option<Option<T>>` to `Option<T>`
1592     ///
1593     /// # Examples
1594     /// Basic usage:
1595     /// ```
1596     /// let x: Option<Option<u32>> = Some(Some(6));
1597     /// assert_eq!(Some(6), x.flatten());
1598     ///
1599     /// let x: Option<Option<u32>> = Some(None);
1600     /// assert_eq!(None, x.flatten());
1601     ///
1602     /// let x: Option<Option<u32>> = None;
1603     /// assert_eq!(None, x.flatten());
1604     /// ```
1605     /// Flattening once only removes one level of nesting:
1606     /// ```
1607     /// let x: Option<Option<Option<u32>>> = Some(Some(Some(6)));
1608     /// assert_eq!(Some(Some(6)), x.flatten());
1609     /// assert_eq!(Some(6), x.flatten().flatten());
1610     /// ```
1611     #[inline]
1612     #[stable(feature = "option_flattening", since = "1.40.0")]
1613     pub fn flatten(self) -> Option<T> {
1614         self.and_then(convert::identity)
1615     }
1616 }