core/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//! # Options and pointers ("nullable" pointers)
44//!
45//! Rust's pointer types must always point to a valid location; there are
46//! no "null" references. Instead, Rust has *optional* pointers, like
47//! the optional owned box, <code>[Option]<[Box\<T>]></code>.
48//!
49//! [Box\<T>]: ../../std/boxed/struct.Box.html
50//!
51//! The following example uses [`Option`] to create an optional box of
52//! [`i32`]. Notice that in order to use the inner [`i32`] value, the
53//! `check_optional` function first needs to use pattern matching to
54//! determine whether the box has a value (i.e., it is [`Some(...)`][`Some`]) or
55//! not ([`None`]).
56//!
57//! ```
58//! let optional = None;
59//! check_optional(optional);
60//!
61//! let optional = Some(Box::new(9000));
62//! check_optional(optional);
63//!
64//! fn check_optional(optional: Option<Box<i32>>) {
65//! match optional {
66//! Some(p) => println!("has value {p}"),
67//! None => println!("has no value"),
68//! }
69//! }
70//! ```
71//!
72//! # The question mark operator, `?`
73//!
74//! Similar to the [`Result`] type, when writing code that calls many functions that return the
75//! [`Option`] type, handling `Some`/`None` can be tedious. The question mark
76//! operator, [`?`], hides some of the boilerplate of propagating values
77//! up the call stack.
78//!
79//! It replaces this:
80//!
81//! ```
82//! # #![allow(dead_code)]
83//! fn add_last_numbers(stack: &mut Vec<i32>) -> Option<i32> {
84//! let a = stack.pop();
85//! let b = stack.pop();
86//!
87//! match (a, b) {
88//! (Some(x), Some(y)) => Some(x + y),
89//! _ => None,
90//! }
91//! }
92//!
93//! ```
94//!
95//! With this:
96//!
97//! ```
98//! # #![allow(dead_code)]
99//! fn add_last_numbers(stack: &mut Vec<i32>) -> Option<i32> {
100//! Some(stack.pop()? + stack.pop()?)
101//! }
102//! ```
103//!
104//! *It's much nicer!*
105//!
106//! Ending the expression with [`?`] will result in the [`Some`]'s unwrapped value, unless the
107//! result is [`None`], in which case [`None`] is returned early from the enclosing function.
108//!
109//! [`?`] can be used in functions that return [`Option`] because of the
110//! early return of [`None`] that it provides.
111//!
112//! [`?`]: crate::ops::Try
113//! [`Some`]: Some
114//! [`None`]: None
115//!
116//! # Representation
117//!
118//! Rust guarantees to optimize the following types `T` such that [`Option<T>`]
119//! has the same size, alignment, and [function call ABI] as `T`. It is
120//! therefore sound, when `T` is one of these types, to transmute a value `t` of
121//! type `T` to type `Option<T>` (producing the value `Some(t)`) and to
122//! transmute a value `Some(t)` of type `Option<T>` to type `T` (producing the
123//! value `t`).
124//!
125//! In some of these cases, Rust further guarantees the following:
126//! - `transmute::<_, Option<T>>([0u8; size_of::<T>()])` is sound and produces
127//! `Option::<T>::None`
128//! - `transmute::<_, [u8; size_of::<T>()]>(Option::<T>::None)` is sound and produces
129//! `[0u8; size_of::<T>()]`
130//!
131//! These cases are identified by the second column:
132//!
133//! | `T` | Transmuting between `[0u8; size_of::<T>()]` and `Option::<T>::None` sound? |
134//! |---------------------------------------------------------------------|----------------------------------------------------------------------------|
135//! | [`Box<U>`] (specifically, only `Box<U, Global>`) | when `U: Sized` |
136//! | `&U` | when `U: Sized` |
137//! | `&mut U` | when `U: Sized` |
138//! | `fn`, `extern "C" fn`[^extern_fn] | always |
139//! | [`num::NonZero*`] | always |
140//! | [`ptr::NonNull<U>`] | when `U: Sized` |
141//! | `#[repr(transparent)]` struct around one of the types in this list. | when it holds for the inner type |
142//!
143//! [^extern_fn]: this remains true for `unsafe` variants, any argument/return types, and any other ABI: `[unsafe] extern "abi" fn` (_e.g._, `extern "system" fn`)
144//!
145//! Under some conditions the above types `T` are also null pointer optimized when wrapped in a [`Result`][result_repr].
146//!
147//! [`Box<U>`]: ../../std/boxed/struct.Box.html
148//! [`num::NonZero*`]: crate::num
149//! [`ptr::NonNull<U>`]: crate::ptr::NonNull
150//! [function call ABI]: ../primitive.fn.html#abi-compatibility
151//! [result_repr]: crate::result#representation
152//!
153//! This is called the "null pointer optimization" or NPO.
154//!
155//! It is further guaranteed that, for the cases above, one can
156//! [`mem::transmute`] from all valid values of `T` to `Option<T>` and
157//! from `Some::<T>(_)` to `T` (but transmuting `None::<T>` to `T`
158//! is undefined behavior).
159//!
160//! # Method overview
161//!
162//! In addition to working with pattern matching, [`Option`] provides a wide
163//! variety of different methods.
164//!
165//! ## Querying the variant
166//!
167//! The [`is_some`] and [`is_none`] methods return [`true`] if the [`Option`]
168//! is [`Some`] or [`None`], respectively.
169//!
170//! The [`is_some_and`] and [`is_none_or`] methods apply the provided function
171//! to the contents of the [`Option`] to produce a boolean value.
172//! If this is [`None`] then a default result is returned instead without executing the function.
173//!
174//! [`is_none`]: Option::is_none
175//! [`is_some`]: Option::is_some
176//! [`is_some_and`]: Option::is_some_and
177//! [`is_none_or`]: Option::is_none_or
178//!
179//! ## Adapters for working with references
180//!
181//! * [`as_ref`] converts from <code>[&][][Option]\<T></code> to <code>[Option]<[&]T></code>
182//! * [`as_mut`] converts from <code>[&mut] [Option]\<T></code> to <code>[Option]<[&mut] T></code>
183//! * [`as_deref`] converts from <code>[&][][Option]\<T></code> to
184//! <code>[Option]<[&]T::[Target]></code>
185//! * [`as_deref_mut`] converts from <code>[&mut] [Option]\<T></code> to
186//! <code>[Option]<[&mut] T::[Target]></code>
187//! * [`as_pin_ref`] converts from <code>[Pin]<[&][][Option]\<T>></code> to
188//! <code>[Option]<[Pin]<[&]T>></code>
189//! * [`as_pin_mut`] converts from <code>[Pin]<[&mut] [Option]\<T>></code> to
190//! <code>[Option]<[Pin]<[&mut] T>></code>
191//! * [`as_slice`] returns a one-element slice of the contained value, if any.
192//! If this is [`None`], an empty slice is returned.
193//! * [`as_mut_slice`] returns a mutable one-element slice of the contained value, if any.
194//! If this is [`None`], an empty slice is returned.
195//!
196//! [&]: reference "shared reference"
197//! [&mut]: reference "mutable reference"
198//! [Target]: Deref::Target "ops::Deref::Target"
199//! [`as_deref`]: Option::as_deref
200//! [`as_deref_mut`]: Option::as_deref_mut
201//! [`as_mut`]: Option::as_mut
202//! [`as_pin_mut`]: Option::as_pin_mut
203//! [`as_pin_ref`]: Option::as_pin_ref
204//! [`as_ref`]: Option::as_ref
205//! [`as_slice`]: Option::as_slice
206//! [`as_mut_slice`]: Option::as_mut_slice
207//!
208//! ## Extracting the contained value
209//!
210//! These methods extract the contained value in an [`Option<T>`] when it
211//! is the [`Some`] variant. If the [`Option`] is [`None`]:
212//!
213//! * [`expect`] panics with a provided custom message
214//! * [`unwrap`] panics with a generic message
215//! * [`unwrap_or`] returns the provided default value
216//! * [`unwrap_or_default`] returns the default value of the type `T`
217//! (which must implement the [`Default`] trait)
218//! * [`unwrap_or_else`] returns the result of evaluating the provided
219//! function
220//! * [`unwrap_unchecked`] produces *[undefined behavior]*
221//!
222//! [`expect`]: Option::expect
223//! [`unwrap`]: Option::unwrap
224//! [`unwrap_or`]: Option::unwrap_or
225//! [`unwrap_or_default`]: Option::unwrap_or_default
226//! [`unwrap_or_else`]: Option::unwrap_or_else
227//! [`unwrap_unchecked`]: Option::unwrap_unchecked
228//! [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
229//!
230//! ## Transforming contained values
231//!
232//! These methods transform [`Option`] to [`Result`]:
233//!
234//! * [`ok_or`] transforms [`Some(v)`] to [`Ok(v)`], and [`None`] to
235//! [`Err(err)`] using the provided default `err` value
236//! * [`ok_or_else`] transforms [`Some(v)`] to [`Ok(v)`], and [`None`] to
237//! a value of [`Err`] using the provided function
238//! * [`transpose`] transposes an [`Option`] of a [`Result`] into a
239//! [`Result`] of an [`Option`]
240//!
241//! [`Err(err)`]: Err
242//! [`Ok(v)`]: Ok
243//! [`Some(v)`]: Some
244//! [`ok_or`]: Option::ok_or
245//! [`ok_or_else`]: Option::ok_or_else
246//! [`transpose`]: Option::transpose
247//!
248//! These methods transform the [`Some`] variant:
249//!
250//! * [`filter`] calls the provided predicate function on the contained
251//! value `t` if the [`Option`] is [`Some(t)`], and returns [`Some(t)`]
252//! if the function returns `true`; otherwise, returns [`None`]
253//! * [`flatten`] removes one level of nesting from an [`Option<Option<T>>`]
254//! * [`inspect`] method takes ownership of the [`Option`] and applies
255//! the provided function to the contained value by reference if [`Some`]
256//! * [`map`] transforms [`Option<T>`] to [`Option<U>`] by applying the
257//! provided function to the contained value of [`Some`] and leaving
258//! [`None`] values unchanged
259//!
260//! [`Some(t)`]: Some
261//! [`filter`]: Option::filter
262//! [`flatten`]: Option::flatten
263//! [`inspect`]: Option::inspect
264//! [`map`]: Option::map
265//!
266//! These methods transform [`Option<T>`] to a value of a possibly
267//! different type `U`:
268//!
269//! * [`map_or`] applies the provided function to the contained value of
270//! [`Some`], or returns the provided default value if the [`Option`] is
271//! [`None`]
272//! * [`map_or_else`] applies the provided function to the contained value
273//! of [`Some`], or returns the result of evaluating the provided
274//! fallback function if the [`Option`] is [`None`]
275//!
276//! [`map_or`]: Option::map_or
277//! [`map_or_else`]: Option::map_or_else
278//!
279//! These methods combine the [`Some`] variants of two [`Option`] values:
280//!
281//! * [`zip`] returns [`Some((s, o))`] if `self` is [`Some(s)`] and the
282//! provided [`Option`] value is [`Some(o)`]; otherwise, returns [`None`]
283//! * [`zip_with`] calls the provided function `f` and returns
284//! [`Some(f(s, o))`] if `self` is [`Some(s)`] and the provided
285//! [`Option`] value is [`Some(o)`]; otherwise, returns [`None`]
286//!
287//! [`Some(f(s, o))`]: Some
288//! [`Some(o)`]: Some
289//! [`Some(s)`]: Some
290//! [`Some((s, o))`]: Some
291//! [`zip`]: Option::zip
292//! [`zip_with`]: Option::zip_with
293//!
294//! ## Boolean operators
295//!
296//! These methods treat the [`Option`] as a boolean value, where [`Some`]
297//! acts like [`true`] and [`None`] acts like [`false`]. There are two
298//! categories of these methods: ones that take an [`Option`] as input, and
299//! ones that take a function as input (to be lazily evaluated).
300//!
301//! The [`and`], [`or`], and [`xor`] methods take another [`Option`] as
302//! input, and produce an [`Option`] as output. Only the [`and`] method can
303//! produce an [`Option<U>`] value having a different inner type `U` than
304//! [`Option<T>`].
305//!
306//! | method | self | input | output |
307//! |---------|-----------|-----------|-----------|
308//! | [`and`] | `None` | (ignored) | `None` |
309//! | [`and`] | `Some(x)` | `None` | `None` |
310//! | [`and`] | `Some(x)` | `Some(y)` | `Some(y)` |
311//! | [`or`] | `None` | `None` | `None` |
312//! | [`or`] | `None` | `Some(y)` | `Some(y)` |
313//! | [`or`] | `Some(x)` | (ignored) | `Some(x)` |
314//! | [`xor`] | `None` | `None` | `None` |
315//! | [`xor`] | `None` | `Some(y)` | `Some(y)` |
316//! | [`xor`] | `Some(x)` | `None` | `Some(x)` |
317//! | [`xor`] | `Some(x)` | `Some(y)` | `None` |
318//!
319//! [`and`]: Option::and
320//! [`or`]: Option::or
321//! [`xor`]: Option::xor
322//!
323//! The [`and_then`] and [`or_else`] methods take a function as input, and
324//! only evaluate the function when they need to produce a new value. Only
325//! the [`and_then`] method can produce an [`Option<U>`] value having a
326//! different inner type `U` than [`Option<T>`].
327//!
328//! | method | self | function input | function result | output |
329//! |--------------|-----------|----------------|-----------------|-----------|
330//! | [`and_then`] | `None` | (not provided) | (not evaluated) | `None` |
331//! | [`and_then`] | `Some(x)` | `x` | `None` | `None` |
332//! | [`and_then`] | `Some(x)` | `x` | `Some(y)` | `Some(y)` |
333//! | [`or_else`] | `None` | (not provided) | `None` | `None` |
334//! | [`or_else`] | `None` | (not provided) | `Some(y)` | `Some(y)` |
335//! | [`or_else`] | `Some(x)` | (not provided) | (not evaluated) | `Some(x)` |
336//!
337//! [`and_then`]: Option::and_then
338//! [`or_else`]: Option::or_else
339//!
340//! This is an example of using methods like [`and_then`] and [`or`] in a
341//! pipeline of method calls. Early stages of the pipeline pass failure
342//! values ([`None`]) through unchanged, and continue processing on
343//! success values ([`Some`]). Toward the end, [`or`] substitutes an error
344//! message if it receives [`None`].
345//!
346//! ```
347//! # use std::collections::BTreeMap;
348//! let mut bt = BTreeMap::new();
349//! bt.insert(20u8, "foo");
350//! bt.insert(42u8, "bar");
351//! let res = [0u8, 1, 11, 200, 22]
352//! .into_iter()
353//! .map(|x| {
354//! // `checked_sub()` returns `None` on error
355//! x.checked_sub(1)
356//! // same with `checked_mul()`
357//! .and_then(|x| x.checked_mul(2))
358//! // `BTreeMap::get` returns `None` on error
359//! .and_then(|x| bt.get(&x))
360//! // Substitute an error message if we have `None` so far
361//! .or(Some(&"error!"))
362//! .copied()
363//! // Won't panic because we unconditionally used `Some` above
364//! .unwrap()
365//! })
366//! .collect::<Vec<_>>();
367//! assert_eq!(res, ["error!", "error!", "foo", "error!", "bar"]);
368//! ```
369//!
370//! ## Comparison operators
371//!
372//! If `T` implements [`PartialOrd`] then [`Option<T>`] will derive its
373//! [`PartialOrd`] implementation. With this order, [`None`] compares as
374//! less than any [`Some`], and two [`Some`] compare the same way as their
375//! contained values would in `T`. If `T` also implements
376//! [`Ord`], then so does [`Option<T>`].
377//!
378//! ```
379//! assert!(None < Some(0));
380//! assert!(Some(0) < Some(1));
381//! ```
382//!
383//! ## Iterating over `Option`
384//!
385//! An [`Option`] can be iterated over. This can be helpful if you need an
386//! iterator that is conditionally empty. The iterator will either produce
387//! a single value (when the [`Option`] is [`Some`]), or produce no values
388//! (when the [`Option`] is [`None`]). For example, [`into_iter`] acts like
389//! [`once(v)`] if the [`Option`] is [`Some(v)`], and like [`empty()`] if
390//! the [`Option`] is [`None`].
391//!
392//! [`Some(v)`]: Some
393//! [`empty()`]: crate::iter::empty
394//! [`once(v)`]: crate::iter::once
395//!
396//! Iterators over [`Option<T>`] come in three types:
397//!
398//! * [`into_iter`] consumes the [`Option`] and produces the contained
399//! value
400//! * [`iter`] produces an immutable reference of type `&T` to the
401//! contained value
402//! * [`iter_mut`] produces a mutable reference of type `&mut T` to the
403//! contained value
404//!
405//! [`into_iter`]: Option::into_iter
406//! [`iter`]: Option::iter
407//! [`iter_mut`]: Option::iter_mut
408//!
409//! An iterator over [`Option`] can be useful when chaining iterators, for
410//! example, to conditionally insert items. (It's not always necessary to
411//! explicitly call an iterator constructor: many [`Iterator`] methods that
412//! accept other iterators will also accept iterable types that implement
413//! [`IntoIterator`], which includes [`Option`].)
414//!
415//! ```
416//! let yep = Some(42);
417//! let nope = None;
418//! // chain() already calls into_iter(), so we don't have to do so
419//! let nums: Vec<i32> = (0..4).chain(yep).chain(4..8).collect();
420//! assert_eq!(nums, [0, 1, 2, 3, 42, 4, 5, 6, 7]);
421//! let nums: Vec<i32> = (0..4).chain(nope).chain(4..8).collect();
422//! assert_eq!(nums, [0, 1, 2, 3, 4, 5, 6, 7]);
423//! ```
424//!
425//! One reason to chain iterators in this way is that a function returning
426//! `impl Iterator` must have all possible return values be of the same
427//! concrete type. Chaining an iterated [`Option`] can help with that.
428//!
429//! ```
430//! fn make_iter(do_insert: bool) -> impl Iterator<Item = i32> {
431//! // Explicit returns to illustrate return types matching
432//! match do_insert {
433//! true => return (0..4).chain(Some(42)).chain(4..8),
434//! false => return (0..4).chain(None).chain(4..8),
435//! }
436//! }
437//! println!("{:?}", make_iter(true).collect::<Vec<_>>());
438//! println!("{:?}", make_iter(false).collect::<Vec<_>>());
439//! ```
440//!
441//! If we try to do the same thing, but using [`once()`] and [`empty()`],
442//! we can't return `impl Iterator` anymore because the concrete types of
443//! the return values differ.
444//!
445//! [`empty()`]: crate::iter::empty
446//! [`once()`]: crate::iter::once
447//!
448//! ```compile_fail,E0308
449//! # use std::iter::{empty, once};
450//! // This won't compile because all possible returns from the function
451//! // must have the same concrete type.
452//! fn make_iter(do_insert: bool) -> impl Iterator<Item = i32> {
453//! // Explicit returns to illustrate return types not matching
454//! match do_insert {
455//! true => return (0..4).chain(once(42)).chain(4..8),
456//! false => return (0..4).chain(empty()).chain(4..8),
457//! }
458//! }
459//! ```
460//!
461//! ## Collecting into `Option`
462//!
463//! [`Option`] implements the [`FromIterator`][impl-FromIterator] trait,
464//! which allows an iterator over [`Option`] values to be collected into an
465//! [`Option`] of a collection of each contained value of the original
466//! [`Option`] values, or [`None`] if any of the elements was [`None`].
467//!
468//! [impl-FromIterator]: Option#impl-FromIterator%3COption%3CA%3E%3E-for-Option%3CV%3E
469//!
470//! ```
471//! let v = [Some(2), Some(4), None, Some(8)];
472//! let res: Option<Vec<_>> = v.into_iter().collect();
473//! assert_eq!(res, None);
474//! let v = [Some(2), Some(4), Some(8)];
475//! let res: Option<Vec<_>> = v.into_iter().collect();
476//! assert_eq!(res, Some(vec![2, 4, 8]));
477//! ```
478//!
479//! [`Option`] also implements the [`Product`][impl-Product] and
480//! [`Sum`][impl-Sum] traits, allowing an iterator over [`Option`] values
481//! to provide the [`product`][Iterator::product] and
482//! [`sum`][Iterator::sum] methods.
483//!
484//! [impl-Product]: Option#impl-Product%3COption%3CU%3E%3E-for-Option%3CT%3E
485//! [impl-Sum]: Option#impl-Sum%3COption%3CU%3E%3E-for-Option%3CT%3E
486//!
487//! ```
488//! let v = [None, Some(1), Some(2), Some(3)];
489//! let res: Option<i32> = v.into_iter().sum();
490//! assert_eq!(res, None);
491//! let v = [Some(1), Some(2), Some(21)];
492//! let res: Option<i32> = v.into_iter().product();
493//! assert_eq!(res, Some(42));
494//! ```
495//!
496//! ## Modifying an [`Option`] in-place
497//!
498//! These methods return a mutable reference to the contained value of an
499//! [`Option<T>`]:
500//!
501//! * [`insert`] inserts a value, dropping any old contents
502//! * [`get_or_insert`] gets the current value, inserting a provided
503//! default value if it is [`None`]
504//! * [`get_or_insert_default`] gets the current value, inserting the
505//! default value of type `T` (which must implement [`Default`]) if it is
506//! [`None`]
507//! * [`get_or_insert_with`] gets the current value, inserting a default
508//! computed by the provided function if it is [`None`]
509//!
510//! [`get_or_insert`]: Option::get_or_insert
511//! [`get_or_insert_default`]: Option::get_or_insert_default
512//! [`get_or_insert_with`]: Option::get_or_insert_with
513//! [`insert`]: Option::insert
514//!
515//! These methods transfer ownership of the contained value of an
516//! [`Option`]:
517//!
518//! * [`take`] takes ownership of the contained value of an [`Option`], if
519//! any, replacing the [`Option`] with [`None`]
520//! * [`replace`] takes ownership of the contained value of an [`Option`],
521//! if any, replacing the [`Option`] with a [`Some`] containing the
522//! provided value
523//!
524//! [`replace`]: Option::replace
525//! [`take`]: Option::take
526//!
527//! # Examples
528//!
529//! Basic pattern matching on [`Option`]:
530//!
531//! ```
532//! let msg = Some("howdy");
533//!
534//! // Take a reference to the contained string
535//! if let Some(m) = &msg {
536//! println!("{}", *m);
537//! }
538//!
539//! // Remove the contained string, destroying the Option
540//! let unwrapped_msg = msg.unwrap_or("default message");
541//! ```
542//!
543//! Initialize a result to [`None`] before a loop:
544//!
545//! ```
546//! enum Kingdom { Plant(u32, &'static str), Animal(u32, &'static str) }
547//!
548//! // A list of data to search through.
549//! let all_the_big_things = [
550//! Kingdom::Plant(250, "redwood"),
551//! Kingdom::Plant(230, "noble fir"),
552//! Kingdom::Plant(229, "sugar pine"),
553//! Kingdom::Animal(25, "blue whale"),
554//! Kingdom::Animal(19, "fin whale"),
555//! Kingdom::Animal(15, "north pacific right whale"),
556//! ];
557//!
558//! // We're going to search for the name of the biggest animal,
559//! // but to start with we've just got `None`.
560//! let mut name_of_biggest_animal = None;
561//! let mut size_of_biggest_animal = 0;
562//! for big_thing in &all_the_big_things {
563//! match *big_thing {
564//! Kingdom::Animal(size, name) if size > size_of_biggest_animal => {
565//! // Now we've found the name of some big animal
566//! size_of_biggest_animal = size;
567//! name_of_biggest_animal = Some(name);
568//! }
569//! Kingdom::Animal(..) | Kingdom::Plant(..) => ()
570//! }
571//! }
572//!
573//! match name_of_biggest_animal {
574//! Some(name) => println!("the biggest animal is {name}"),
575//! None => println!("there are no animals :("),
576//! }
577//! ```
578
579#![stable(feature = "rust1", since = "1.0.0")]
580
581use crate::clone::TrivialClone;
582use crate::iter::{self, FusedIterator, TrustedLen};
583use crate::marker::Destruct;
584use crate::num::NonZero;
585use crate::ops::{self, ControlFlow, Deref, DerefMut, Residual, Try};
586use crate::panicking::{panic, panic_display};
587use crate::pin::Pin;
588use crate::{cmp, convert, hint, mem, slice};
589
590/// The `Option` type. See [the module level documentation](self) for more.
591#[doc(search_unbox)]
592#[derive(Copy, Debug, Hash)]
593#[derive_const(Eq)]
594#[rustc_diagnostic_item = "Option"]
595#[lang = "Option"]
596#[stable(feature = "rust1", since = "1.0.0")]
597#[allow(clippy::derived_hash_with_manual_eq)] // PartialEq is manually implemented equivalently
598pub enum Option<T> {
599 /// No value.
600 #[lang = "None"]
601 #[stable(feature = "rust1", since = "1.0.0")]
602 None,
603 /// Some value of type `T`.
604 #[lang = "Some"]
605 #[stable(feature = "rust1", since = "1.0.0")]
606 Some(#[stable(feature = "rust1", since = "1.0.0")] T),
607}
608
609/////////////////////////////////////////////////////////////////////////////
610// Type implementation
611/////////////////////////////////////////////////////////////////////////////
612
613impl<T> Option<T> {
614 /////////////////////////////////////////////////////////////////////////
615 // Querying the contained values
616 /////////////////////////////////////////////////////////////////////////
617
618 /// Returns `true` if the option is a [`Some`] value.
619 ///
620 /// # Examples
621 ///
622 /// ```
623 /// let x: Option<u32> = Some(2);
624 /// assert_eq!(x.is_some(), true);
625 ///
626 /// let x: Option<u32> = None;
627 /// assert_eq!(x.is_some(), false);
628 /// ```
629 #[must_use = "if you intended to assert that this has a value, consider `.unwrap()` instead"]
630 #[inline]
631 #[stable(feature = "rust1", since = "1.0.0")]
632 #[rustc_const_stable(feature = "const_option_basics", since = "1.48.0")]
633 pub const fn is_some(&self) -> bool {
634 matches!(*self, Some(_))
635 }
636
637 /// Returns `true` if the option is a [`Some`] and the value inside of it matches a predicate.
638 ///
639 /// # Examples
640 ///
641 /// ```
642 /// let x: Option<u32> = Some(2);
643 /// assert_eq!(x.is_some_and(|x| x > 1), true);
644 ///
645 /// let x: Option<u32> = Some(0);
646 /// assert_eq!(x.is_some_and(|x| x > 1), false);
647 ///
648 /// let x: Option<u32> = None;
649 /// assert_eq!(x.is_some_and(|x| x > 1), false);
650 ///
651 /// let x: Option<String> = Some("ownership".to_string());
652 /// assert_eq!(x.as_ref().is_some_and(|x| x.len() > 1), true);
653 /// println!("still alive {:?}", x);
654 /// ```
655 #[must_use]
656 #[inline]
657 #[stable(feature = "is_some_and", since = "1.70.0")]
658 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
659 pub const fn is_some_and(self, f: impl [const] FnOnce(T) -> bool + [const] Destruct) -> bool {
660 match self {
661 None => false,
662 Some(x) => f(x),
663 }
664 }
665
666 /// Returns `true` if the option is a [`None`] value.
667 ///
668 /// # Examples
669 ///
670 /// ```
671 /// let x: Option<u32> = Some(2);
672 /// assert_eq!(x.is_none(), false);
673 ///
674 /// let x: Option<u32> = None;
675 /// assert_eq!(x.is_none(), true);
676 /// ```
677 #[must_use = "if you intended to assert that this doesn't have a value, consider \
678 wrapping this in an `assert!()` instead"]
679 #[inline]
680 #[stable(feature = "rust1", since = "1.0.0")]
681 #[rustc_const_stable(feature = "const_option_basics", since = "1.48.0")]
682 pub const fn is_none(&self) -> bool {
683 !self.is_some()
684 }
685
686 /// Returns `true` if the option is a [`None`] or the value inside of it matches a predicate.
687 ///
688 /// # Examples
689 ///
690 /// ```
691 /// let x: Option<u32> = Some(2);
692 /// assert_eq!(x.is_none_or(|x| x > 1), true);
693 ///
694 /// let x: Option<u32> = Some(0);
695 /// assert_eq!(x.is_none_or(|x| x > 1), false);
696 ///
697 /// let x: Option<u32> = None;
698 /// assert_eq!(x.is_none_or(|x| x > 1), true);
699 ///
700 /// let x: Option<String> = Some("ownership".to_string());
701 /// assert_eq!(x.as_ref().is_none_or(|x| x.len() > 1), true);
702 /// println!("still alive {:?}", x);
703 /// ```
704 #[must_use]
705 #[inline]
706 #[stable(feature = "is_none_or", since = "1.82.0")]
707 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
708 pub const fn is_none_or(self, f: impl [const] FnOnce(T) -> bool + [const] Destruct) -> bool {
709 match self {
710 None => true,
711 Some(x) => f(x),
712 }
713 }
714
715 /////////////////////////////////////////////////////////////////////////
716 // Adapter for working with references
717 /////////////////////////////////////////////////////////////////////////
718
719 /// Converts from `&Option<T>` to `Option<&T>`.
720 ///
721 /// # Examples
722 ///
723 /// Calculates the length of an <code>Option<[String]></code> as an <code>Option<[usize]></code>
724 /// without moving the [`String`]. The [`map`] method takes the `self` argument by value,
725 /// consuming the original, so this technique uses `as_ref` to first take an `Option` to a
726 /// reference to the value inside the original.
727 ///
728 /// [`map`]: Option::map
729 /// [String]: ../../std/string/struct.String.html "String"
730 /// [`String`]: ../../std/string/struct.String.html "String"
731 ///
732 /// ```
733 /// let text: Option<String> = Some("Hello, world!".to_string());
734 /// // First, cast `Option<String>` to `Option<&String>` with `as_ref`,
735 /// // then consume *that* with `map`, leaving `text` on the stack.
736 /// let text_length: Option<usize> = text.as_ref().map(|s| s.len());
737 /// println!("still can print text: {text:?}");
738 /// ```
739 #[inline]
740 #[expect(clippy::match_as_ref, reason = "implements as_ref")]
741 #[rustc_const_stable(feature = "const_option_basics", since = "1.48.0")]
742 #[stable(feature = "rust1", since = "1.0.0")]
743 pub const fn as_ref(&self) -> Option<&T> {
744 match *self {
745 Some(ref x) => Some(x),
746 None => None,
747 }
748 }
749
750 /// Converts from `&mut Option<T>` to `Option<&mut T>`.
751 ///
752 /// # Examples
753 ///
754 /// ```
755 /// let mut x = Some(2);
756 /// match x.as_mut() {
757 /// Some(v) => *v = 42,
758 /// None => {},
759 /// }
760 /// assert_eq!(x, Some(42));
761 /// ```
762 #[inline]
763 #[expect(clippy::match_as_ref, reason = "implements as_mut")]
764 #[stable(feature = "rust1", since = "1.0.0")]
765 #[rustc_const_stable(feature = "const_option", since = "1.83.0")]
766 pub const fn as_mut(&mut self) -> Option<&mut T> {
767 match *self {
768 Some(ref mut x) => Some(x),
769 None => None,
770 }
771 }
772
773 /// Converts from <code>[Pin]<[&]Option\<T>></code> to <code>Option<[Pin]<[&]T>></code>.
774 ///
775 /// [&]: reference "shared reference"
776 #[inline]
777 #[must_use]
778 #[stable(feature = "pin", since = "1.33.0")]
779 #[rustc_const_stable(feature = "const_option_ext", since = "1.84.0")]
780 pub const fn as_pin_ref(self: Pin<&Self>) -> Option<Pin<&T>> {
781 // FIXME(const-hack): use `map` once that is possible
782 match Pin::get_ref(self).as_ref() {
783 // SAFETY: `x` is guaranteed to be pinned because it comes from `self`
784 // which is pinned.
785 Some(x) => unsafe { Some(Pin::new_unchecked(x)) },
786 None => None,
787 }
788 }
789
790 /// Converts from <code>[Pin]<[&mut] Option\<T>></code> to <code>Option<[Pin]<[&mut] T>></code>.
791 ///
792 /// [&mut]: reference "mutable reference"
793 #[inline]
794 #[must_use]
795 #[stable(feature = "pin", since = "1.33.0")]
796 #[rustc_const_stable(feature = "const_option_ext", since = "1.84.0")]
797 pub const fn as_pin_mut(self: Pin<&mut Self>) -> Option<Pin<&mut T>> {
798 // SAFETY: `get_unchecked_mut` is never used to move the `Option` inside `self`.
799 // `x` is guaranteed to be pinned because it comes from `self` which is pinned.
800 unsafe {
801 // FIXME(const-hack): use `map` once that is possible
802 match Pin::get_unchecked_mut(self).as_mut() {
803 Some(x) => Some(Pin::new_unchecked(x)),
804 None => None,
805 }
806 }
807 }
808
809 #[inline]
810 const fn len(&self) -> usize {
811 // Using the intrinsic avoids emitting a branch to get the 0 or 1.
812 let discriminant: isize = crate::intrinsics::discriminant_value(self);
813 discriminant as usize
814 }
815
816 /// Returns a slice of the contained value, if any. If this is `None`, an
817 /// empty slice is returned. This can be useful to have a single type of
818 /// iterator over an `Option` or slice.
819 ///
820 /// Note: Should you have an `Option<&T>` and wish to get a slice of `T`,
821 /// you can unpack it via `opt.map_or(&[], std::slice::from_ref)`.
822 ///
823 /// # Examples
824 ///
825 /// ```rust
826 /// assert_eq!(
827 /// [Some(1234).as_slice(), None.as_slice()],
828 /// [&[1234][..], &[][..]],
829 /// );
830 /// ```
831 ///
832 /// The inverse of this function is (discounting
833 /// borrowing) [`[_]::first`](slice::first):
834 ///
835 /// ```rust
836 /// for i in [Some(1234_u16), None] {
837 /// assert_eq!(i.as_ref(), i.as_slice().first());
838 /// }
839 /// ```
840 #[inline]
841 #[must_use]
842 #[stable(feature = "option_as_slice", since = "1.75.0")]
843 #[rustc_const_stable(feature = "const_option_ext", since = "1.84.0")]
844 pub const fn as_slice(&self) -> &[T] {
845 // SAFETY: When the `Option` is `Some`, we're using the actual pointer
846 // to the payload, with a length of 1, so this is equivalent to
847 // `slice::from_ref`, and thus is safe.
848 // When the `Option` is `None`, the length used is 0, so to be safe it
849 // just needs to be aligned, which it is because `&self` is aligned and
850 // the offset used is a multiple of alignment.
851 //
852 // Here we assume that `offset_of!` always returns an offset to an
853 // in-bounds and correctly aligned position for a `T` (even if in the
854 // `None` case it's just padding).
855 unsafe {
856 slice::from_raw_parts(
857 (self as *const Self).byte_add(core::mem::offset_of!(Self, Some.0)).cast(),
858 self.len(),
859 )
860 }
861 }
862
863 /// Returns a mutable slice of the contained value, if any. If this is
864 /// `None`, an empty slice is returned. This can be useful to have a
865 /// single type of iterator over an `Option` or slice.
866 ///
867 /// Note: Should you have an `Option<&mut T>` instead of a
868 /// `&mut Option<T>`, which this method takes, you can obtain a mutable
869 /// slice via `opt.map_or(&mut [], std::slice::from_mut)`.
870 ///
871 /// # Examples
872 ///
873 /// ```rust
874 /// assert_eq!(
875 /// [Some(1234).as_mut_slice(), None.as_mut_slice()],
876 /// [&mut [1234][..], &mut [][..]],
877 /// );
878 /// ```
879 ///
880 /// The result is a mutable slice of zero or one items that points into
881 /// our original `Option`:
882 ///
883 /// ```rust
884 /// let mut x = Some(1234);
885 /// x.as_mut_slice()[0] += 1;
886 /// assert_eq!(x, Some(1235));
887 /// ```
888 ///
889 /// The inverse of this method (discounting borrowing)
890 /// is [`[_]::first_mut`](slice::first_mut):
891 ///
892 /// ```rust
893 /// assert_eq!(Some(123).as_mut_slice().first_mut(), Some(&mut 123))
894 /// ```
895 #[inline]
896 #[must_use]
897 #[stable(feature = "option_as_slice", since = "1.75.0")]
898 #[rustc_const_stable(feature = "const_option_ext", since = "1.84.0")]
899 pub const fn as_mut_slice(&mut self) -> &mut [T] {
900 // SAFETY: When the `Option` is `Some`, we're using the actual pointer
901 // to the payload, with a length of 1, so this is equivalent to
902 // `slice::from_mut`, and thus is safe.
903 // When the `Option` is `None`, the length used is 0, so to be safe it
904 // just needs to be aligned, which it is because `&self` is aligned and
905 // the offset used is a multiple of alignment.
906 //
907 // In the new version, the intrinsic creates a `*const T` from a
908 // mutable reference so it is safe to cast back to a mutable pointer
909 // here. As with `as_slice`, the intrinsic always returns a pointer to
910 // an in-bounds and correctly aligned position for a `T` (even if in
911 // the `None` case it's just padding).
912 unsafe {
913 slice::from_raw_parts_mut(
914 (self as *mut Self).byte_add(core::mem::offset_of!(Self, Some.0)).cast(),
915 self.len(),
916 )
917 }
918 }
919
920 /////////////////////////////////////////////////////////////////////////
921 // Getting to contained values
922 /////////////////////////////////////////////////////////////////////////
923
924 /// Returns the contained [`Some`] value, consuming the `self` value.
925 ///
926 /// # Panics
927 ///
928 /// Panics if the value is a [`None`] with a custom panic message provided by
929 /// `msg`.
930 ///
931 /// # Examples
932 ///
933 /// ```
934 /// let x = Some("value");
935 /// assert_eq!(x.expect("fruits are healthy"), "value");
936 /// ```
937 ///
938 /// ```should_panic
939 /// let x: Option<&str> = None;
940 /// x.expect("fruits are healthy"); // panics with `fruits are healthy`
941 /// ```
942 ///
943 /// # Recommended Message Style
944 ///
945 /// We recommend that `expect` messages are used to describe the reason you
946 /// _expect_ the `Option` should be `Some`.
947 ///
948 /// ```should_panic
949 /// # let slice: &[u8] = &[];
950 /// let item = slice.get(0)
951 /// .expect("slice should not be empty");
952 /// ```
953 ///
954 /// **Hint**: If you're having trouble remembering how to phrase expect
955 /// error messages remember to focus on the word "should" as in "env
956 /// variable should be set by blah" or "the given binary should be available
957 /// and executable by the current user".
958 ///
959 /// For more detail on expect message styles and the reasoning behind our
960 /// recommendation please refer to the section on ["Common Message
961 /// Styles"](../../std/error/index.html#common-message-styles) in the [`std::error`](../../std/error/index.html) module docs.
962 #[inline]
963 #[track_caller]
964 #[stable(feature = "rust1", since = "1.0.0")]
965 #[rustc_diagnostic_item = "option_expect"]
966 #[rustc_allow_const_fn_unstable(const_precise_live_drops)]
967 #[rustc_const_stable(feature = "const_option", since = "1.83.0")]
968 pub const fn expect(self, msg: &str) -> T {
969 match self {
970 Some(val) => val,
971 None => expect_failed(msg),
972 }
973 }
974
975 /// Returns the contained [`Some`] value, consuming the `self` value.
976 ///
977 /// Because this function may panic, its use is generally discouraged.
978 /// Panics are meant for unrecoverable errors, and
979 /// [may abort the entire program][panic-abort].
980 ///
981 /// Instead, prefer to use pattern matching and handle the [`None`]
982 /// case explicitly, or call [`unwrap_or`], [`unwrap_or_else`], or
983 /// [`unwrap_or_default`]. In functions returning `Option`, you can use
984 /// [the `?` (try) operator][try-option].
985 ///
986 /// [panic-abort]: https://doc.rust-lang.org/book/ch09-01-unrecoverable-errors-with-panic.html
987 /// [try-option]: https://doc.rust-lang.org/book/ch09-02-recoverable-errors-with-result.html#where-the--operator-can-be-used
988 /// [`unwrap_or`]: Option::unwrap_or
989 /// [`unwrap_or_else`]: Option::unwrap_or_else
990 /// [`unwrap_or_default`]: Option::unwrap_or_default
991 ///
992 /// # Panics
993 ///
994 /// Panics if the self value equals [`None`].
995 ///
996 /// # Examples
997 ///
998 /// ```
999 /// let x = Some("air");
1000 /// assert_eq!(x.unwrap(), "air");
1001 /// ```
1002 ///
1003 /// ```should_panic
1004 /// let x: Option<&str> = None;
1005 /// assert_eq!(x.unwrap(), "air"); // fails
1006 /// ```
1007 #[inline(always)]
1008 #[track_caller]
1009 #[stable(feature = "rust1", since = "1.0.0")]
1010 #[rustc_diagnostic_item = "option_unwrap"]
1011 #[rustc_allow_const_fn_unstable(const_precise_live_drops)]
1012 #[rustc_const_stable(feature = "const_option", since = "1.83.0")]
1013 pub const fn unwrap(self) -> T {
1014 match self {
1015 Some(val) => val,
1016 None => unwrap_failed(),
1017 }
1018 }
1019
1020 /// Returns the contained [`Some`] value or a provided default.
1021 ///
1022 /// Arguments passed to `unwrap_or` are eagerly evaluated; if you are passing
1023 /// the result of a function call, it is recommended to use [`unwrap_or_else`],
1024 /// which is lazily evaluated.
1025 ///
1026 /// [`unwrap_or_else`]: Option::unwrap_or_else
1027 ///
1028 /// # Examples
1029 ///
1030 /// ```
1031 /// assert_eq!(Some("car").unwrap_or("bike"), "car");
1032 /// assert_eq!(None.unwrap_or("bike"), "bike");
1033 /// ```
1034 #[inline]
1035 #[stable(feature = "rust1", since = "1.0.0")]
1036 #[rustc_allow_const_fn_unstable(const_precise_live_drops)]
1037 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1038 pub const fn unwrap_or(self, default: T) -> T
1039 where
1040 T: [const] Destruct,
1041 {
1042 match self {
1043 Some(x) => x,
1044 None => default,
1045 }
1046 }
1047
1048 /// Returns the contained [`Some`] value or computes it from a closure.
1049 ///
1050 /// # Examples
1051 ///
1052 /// ```
1053 /// let k = 10;
1054 /// assert_eq!(Some(4).unwrap_or_else(|| 2 * k), 4);
1055 /// assert_eq!(None.unwrap_or_else(|| 2 * k), 20);
1056 /// ```
1057 #[inline]
1058 #[track_caller]
1059 #[stable(feature = "rust1", since = "1.0.0")]
1060 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1061 pub const fn unwrap_or_else<F>(self, f: F) -> T
1062 where
1063 F: [const] FnOnce() -> T + [const] Destruct,
1064 {
1065 match self {
1066 Some(x) => x,
1067 None => f(),
1068 }
1069 }
1070
1071 /// Returns the contained [`Some`] value or a default.
1072 ///
1073 /// Consumes the `self` argument then, if [`Some`], returns the contained
1074 /// value, otherwise if [`None`], returns the [default value] for that
1075 /// type.
1076 ///
1077 /// # Examples
1078 ///
1079 /// ```
1080 /// let x: Option<u32> = None;
1081 /// let y: Option<u32> = Some(12);
1082 ///
1083 /// assert_eq!(x.unwrap_or_default(), 0);
1084 /// assert_eq!(y.unwrap_or_default(), 12);
1085 /// ```
1086 ///
1087 /// [default value]: Default::default
1088 /// [`parse`]: str::parse
1089 /// [`FromStr`]: crate::str::FromStr
1090 #[inline]
1091 #[stable(feature = "rust1", since = "1.0.0")]
1092 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1093 pub const fn unwrap_or_default(self) -> T
1094 where
1095 T: [const] Default,
1096 {
1097 match self {
1098 Some(x) => x,
1099 None => T::default(),
1100 }
1101 }
1102
1103 /// Returns the contained [`Some`] value, consuming the `self` value,
1104 /// without checking that the value is not [`None`].
1105 ///
1106 /// # Safety
1107 ///
1108 /// Calling this method on [`None`] is *[undefined behavior]*.
1109 ///
1110 /// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
1111 ///
1112 /// # Examples
1113 ///
1114 /// ```
1115 /// let x = Some("air");
1116 /// assert_eq!(unsafe { x.unwrap_unchecked() }, "air");
1117 /// ```
1118 ///
1119 /// ```no_run
1120 /// let x: Option<&str> = None;
1121 /// assert_eq!(unsafe { x.unwrap_unchecked() }, "air"); // Undefined behavior!
1122 /// ```
1123 #[inline]
1124 #[track_caller]
1125 #[stable(feature = "option_result_unwrap_unchecked", since = "1.58.0")]
1126 #[rustc_allow_const_fn_unstable(const_precise_live_drops)]
1127 #[rustc_const_stable(feature = "const_option", since = "1.83.0")]
1128 pub const unsafe fn unwrap_unchecked(self) -> T {
1129 match self {
1130 Some(val) => val,
1131 // SAFETY: the safety contract must be upheld by the caller.
1132 None => unsafe { hint::unreachable_unchecked() },
1133 }
1134 }
1135
1136 /////////////////////////////////////////////////////////////////////////
1137 // Transforming contained values
1138 /////////////////////////////////////////////////////////////////////////
1139
1140 /// Maps an `Option<T>` to `Option<U>` by applying a function to a contained value (if `Some`) or returns `None` (if `None`).
1141 ///
1142 /// # Examples
1143 ///
1144 /// Calculates the length of an <code>Option<[String]></code> as an
1145 /// <code>Option<[usize]></code>, consuming the original:
1146 ///
1147 /// [String]: ../../std/string/struct.String.html "String"
1148 /// ```
1149 /// let maybe_some_string = Some(String::from("Hello, World!"));
1150 /// // `Option::map` takes self *by value*, consuming `maybe_some_string`
1151 /// let maybe_some_len = maybe_some_string.map(|s| s.len());
1152 /// assert_eq!(maybe_some_len, Some(13));
1153 ///
1154 /// let x: Option<&str> = None;
1155 /// assert_eq!(x.map(|s| s.len()), None);
1156 /// ```
1157 #[inline]
1158 #[stable(feature = "rust1", since = "1.0.0")]
1159 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1160 pub const fn map<U, F>(self, f: F) -> Option<U>
1161 where
1162 F: [const] FnOnce(T) -> U + [const] Destruct,
1163 {
1164 match self {
1165 Some(x) => Some(f(x)),
1166 None => None,
1167 }
1168 }
1169
1170 /// Calls a function with a reference to the contained value if [`Some`].
1171 ///
1172 /// Returns the original option.
1173 ///
1174 /// # Examples
1175 ///
1176 /// ```
1177 /// let list = vec![1, 2, 3];
1178 ///
1179 /// // prints "got: 2"
1180 /// let x = list
1181 /// .get(1)
1182 /// .inspect(|x| println!("got: {x}"))
1183 /// .expect("list should be long enough");
1184 ///
1185 /// // prints nothing
1186 /// list.get(5).inspect(|x| println!("got: {x}"));
1187 /// ```
1188 #[inline]
1189 #[stable(feature = "result_option_inspect", since = "1.76.0")]
1190 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1191 pub const fn inspect<F>(self, f: F) -> Self
1192 where
1193 F: [const] FnOnce(&T) + [const] Destruct,
1194 {
1195 if let Some(ref x) = self {
1196 f(x);
1197 }
1198
1199 self
1200 }
1201
1202 /// Returns the provided default result (if none),
1203 /// or applies a function to the contained value (if any).
1204 ///
1205 /// Arguments passed to `map_or` are eagerly evaluated; if you are passing
1206 /// the result of a function call, it is recommended to use [`map_or_else`],
1207 /// which is lazily evaluated.
1208 ///
1209 /// [`map_or_else`]: Option::map_or_else
1210 ///
1211 /// # Examples
1212 ///
1213 /// ```
1214 /// let x = Some("foo");
1215 /// assert_eq!(x.map_or(42, |v| v.len()), 3);
1216 ///
1217 /// let x: Option<&str> = None;
1218 /// assert_eq!(x.map_or(42, |v| v.len()), 42);
1219 /// ```
1220 #[inline]
1221 #[stable(feature = "rust1", since = "1.0.0")]
1222 #[must_use = "if you don't need the returned value, use `if let` instead"]
1223 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1224 pub const fn map_or<U, F>(self, default: U, f: F) -> U
1225 where
1226 F: [const] FnOnce(T) -> U + [const] Destruct,
1227 U: [const] Destruct,
1228 {
1229 match self {
1230 Some(t) => f(t),
1231 None => default,
1232 }
1233 }
1234
1235 /// Computes a default function result (if none), or
1236 /// applies a different function to the contained value (if any).
1237 ///
1238 /// # Basic examples
1239 ///
1240 /// ```
1241 /// let k = 21;
1242 ///
1243 /// let x = Some("foo");
1244 /// assert_eq!(x.map_or_else(|| 2 * k, |v| v.len()), 3);
1245 ///
1246 /// let x: Option<&str> = None;
1247 /// assert_eq!(x.map_or_else(|| 2 * k, |v| v.len()), 42);
1248 /// ```
1249 ///
1250 /// # Handling a Result-based fallback
1251 ///
1252 /// A somewhat common occurrence when dealing with optional values
1253 /// in combination with [`Result<T, E>`] is the case where one wants to invoke
1254 /// a fallible fallback if the option is not present. This example
1255 /// parses a command line argument (if present), or the contents of a file to
1256 /// an integer. However, unlike accessing the command line argument, reading
1257 /// the file is fallible, so it must be wrapped with `Ok`.
1258 ///
1259 /// ```no_run
1260 /// # fn main() -> Result<(), Box<dyn std::error::Error>> {
1261 /// let v: u64 = std::env::args()
1262 /// .nth(1)
1263 /// .map_or_else(|| std::fs::read_to_string("/etc/someconfig.conf"), Ok)?
1264 /// .parse()?;
1265 /// # Ok(())
1266 /// # }
1267 /// ```
1268 #[inline]
1269 #[stable(feature = "rust1", since = "1.0.0")]
1270 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1271 pub const fn map_or_else<U, D, F>(self, default: D, f: F) -> U
1272 where
1273 D: [const] FnOnce() -> U + [const] Destruct,
1274 F: [const] FnOnce(T) -> U + [const] Destruct,
1275 {
1276 match self {
1277 Some(t) => f(t),
1278 None => default(),
1279 }
1280 }
1281
1282 /// Maps an `Option<T>` to a `U` by applying function `f` to the contained
1283 /// value if the option is [`Some`], otherwise if [`None`], returns the
1284 /// [default value] for the type `U`.
1285 ///
1286 /// # Examples
1287 ///
1288 /// ```
1289 /// let x: Option<&str> = Some("hi");
1290 /// let y: Option<&str> = None;
1291 ///
1292 /// assert_eq!(x.map_or_default(|x| x.len()), 2);
1293 /// assert_eq!(y.map_or_default(|y| y.len()), 0);
1294 /// ```
1295 ///
1296 /// [default value]: Default::default
1297 #[inline]
1298 #[stable(feature = "result_option_map_or_default", since = "1.98.0")]
1299 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1300 pub const fn map_or_default<U, F>(self, f: F) -> U
1301 where
1302 U: [const] Default,
1303 F: [const] FnOnce(T) -> U + [const] Destruct,
1304 {
1305 match self {
1306 Some(t) => f(t),
1307 None => U::default(),
1308 }
1309 }
1310
1311 /// Transforms the `Option<T>` into a [`Result<T, E>`], mapping [`Some(v)`] to
1312 /// [`Ok(v)`] and [`None`] to [`Err(err)`].
1313 ///
1314 /// Arguments passed to `ok_or` are eagerly evaluated; if you are passing the
1315 /// result of a function call, it is recommended to use [`ok_or_else`], which is
1316 /// lazily evaluated.
1317 ///
1318 /// [`Ok(v)`]: Ok
1319 /// [`Err(err)`]: Err
1320 /// [`Some(v)`]: Some
1321 /// [`ok_or_else`]: Option::ok_or_else
1322 ///
1323 /// # Examples
1324 ///
1325 /// ```
1326 /// let x = Some("foo");
1327 /// assert_eq!(x.ok_or(0), Ok("foo"));
1328 ///
1329 /// let x: Option<&str> = None;
1330 /// assert_eq!(x.ok_or(0), Err(0));
1331 /// ```
1332 #[inline]
1333 #[stable(feature = "rust1", since = "1.0.0")]
1334 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1335 pub const fn ok_or<E: [const] Destruct>(self, err: E) -> Result<T, E> {
1336 match self {
1337 Some(v) => Ok(v),
1338 None => Err(err),
1339 }
1340 }
1341
1342 /// Transforms the `Option<T>` into a [`Result<T, E>`], mapping [`Some(v)`] to
1343 /// [`Ok(v)`] and [`None`] to [`Err(err())`].
1344 ///
1345 /// [`Ok(v)`]: Ok
1346 /// [`Err(err())`]: Err
1347 /// [`Some(v)`]: Some
1348 ///
1349 /// # Examples
1350 ///
1351 /// ```
1352 /// let x = Some("foo");
1353 /// assert_eq!(x.ok_or_else(|| 0), Ok("foo"));
1354 ///
1355 /// let x: Option<&str> = None;
1356 /// assert_eq!(x.ok_or_else(|| 0), Err(0));
1357 /// ```
1358 #[inline]
1359 #[stable(feature = "rust1", since = "1.0.0")]
1360 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1361 pub const fn ok_or_else<E, F>(self, err: F) -> Result<T, E>
1362 where
1363 F: [const] FnOnce() -> E + [const] Destruct,
1364 {
1365 match self {
1366 Some(v) => Ok(v),
1367 None => Err(err()),
1368 }
1369 }
1370
1371 /// Converts from `Option<T>` (or `&Option<T>`) to `Option<&T::Target>`.
1372 ///
1373 /// Leaves the original Option in-place, creating a new one with a reference
1374 /// to the original one, additionally coercing the contents via [`Deref`].
1375 ///
1376 /// # Examples
1377 ///
1378 /// ```
1379 /// let x: Option<String> = Some("hey".to_owned());
1380 /// assert_eq!(x.as_deref(), Some("hey"));
1381 ///
1382 /// let x: Option<String> = None;
1383 /// assert_eq!(x.as_deref(), None);
1384 /// ```
1385 #[inline]
1386 #[stable(feature = "option_deref", since = "1.40.0")]
1387 #[rustc_const_unstable(feature = "const_convert", issue = "143773")]
1388 pub const fn as_deref(&self) -> Option<&T::Target>
1389 where
1390 T: [const] Deref,
1391 {
1392 self.as_ref().map(Deref::deref)
1393 }
1394
1395 /// Converts from `Option<T>` (or `&mut Option<T>`) to `Option<&mut T::Target>`.
1396 ///
1397 /// Leaves the original `Option` in-place, creating a new one containing a mutable reference to
1398 /// the inner type's [`Deref::Target`] type.
1399 ///
1400 /// # Examples
1401 ///
1402 /// ```
1403 /// let mut x: Option<String> = Some("hey".to_owned());
1404 /// assert_eq!(x.as_deref_mut().map(|x| {
1405 /// x.make_ascii_uppercase();
1406 /// x
1407 /// }), Some("HEY".to_owned().as_mut_str()));
1408 /// ```
1409 #[inline]
1410 #[stable(feature = "option_deref", since = "1.40.0")]
1411 #[rustc_const_unstable(feature = "const_convert", issue = "143773")]
1412 pub const fn as_deref_mut(&mut self) -> Option<&mut T::Target>
1413 where
1414 T: [const] DerefMut,
1415 {
1416 self.as_mut().map(DerefMut::deref_mut)
1417 }
1418
1419 /////////////////////////////////////////////////////////////////////////
1420 // Iterator constructors
1421 /////////////////////////////////////////////////////////////////////////
1422
1423 /// Returns an iterator over the possibly contained value.
1424 ///
1425 /// # Examples
1426 ///
1427 /// ```
1428 /// let x = Some(4);
1429 /// assert_eq!(x.iter().next(), Some(&4));
1430 ///
1431 /// let x: Option<u32> = None;
1432 /// assert_eq!(x.iter().next(), None);
1433 /// ```
1434 #[inline]
1435 #[stable(feature = "rust1", since = "1.0.0")]
1436 pub fn iter(&self) -> Iter<'_, T> {
1437 Iter { inner: Item { opt: self.as_ref() } }
1438 }
1439
1440 /// Returns a mutable iterator over the possibly contained value.
1441 ///
1442 /// # Examples
1443 ///
1444 /// ```
1445 /// let mut x = Some(4);
1446 /// match x.iter_mut().next() {
1447 /// Some(v) => *v = 42,
1448 /// None => {},
1449 /// }
1450 /// assert_eq!(x, Some(42));
1451 ///
1452 /// let mut x: Option<u32> = None;
1453 /// assert_eq!(x.iter_mut().next(), None);
1454 /// ```
1455 #[inline]
1456 #[stable(feature = "rust1", since = "1.0.0")]
1457 pub fn iter_mut(&mut self) -> IterMut<'_, T> {
1458 IterMut { inner: Item { opt: self.as_mut() } }
1459 }
1460
1461 /////////////////////////////////////////////////////////////////////////
1462 // Boolean operations on the values, eager and lazy
1463 /////////////////////////////////////////////////////////////////////////
1464
1465 /// Returns [`None`] if the option is [`None`], otherwise returns `optb`.
1466 ///
1467 /// Arguments passed to `and` are eagerly evaluated; if you are passing the
1468 /// result of a function call, it is recommended to use [`and_then`], which is
1469 /// lazily evaluated.
1470 ///
1471 /// [`and_then`]: Option::and_then
1472 ///
1473 /// # Examples
1474 ///
1475 /// ```
1476 /// let x = Some(2);
1477 /// let y: Option<&str> = None;
1478 /// assert_eq!(x.and(y), None);
1479 ///
1480 /// let x: Option<u32> = None;
1481 /// let y = Some("foo");
1482 /// assert_eq!(x.and(y), None);
1483 ///
1484 /// let x = Some(2);
1485 /// let y = Some("foo");
1486 /// assert_eq!(x.and(y), Some("foo"));
1487 ///
1488 /// let x: Option<u32> = None;
1489 /// let y: Option<&str> = None;
1490 /// assert_eq!(x.and(y), None);
1491 /// ```
1492 #[inline]
1493 #[stable(feature = "rust1", since = "1.0.0")]
1494 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1495 pub const fn and<U>(self, optb: Option<U>) -> Option<U>
1496 where
1497 T: [const] Destruct,
1498 U: [const] Destruct,
1499 {
1500 match self {
1501 Some(_) => optb,
1502 None => None,
1503 }
1504 }
1505
1506 /// Returns [`None`] if the option is [`None`], otherwise calls `f` with the
1507 /// wrapped value and returns the result.
1508 ///
1509 /// Some languages call this operation flatmap.
1510 ///
1511 /// # Examples
1512 ///
1513 /// ```
1514 /// fn sq_then_to_string(x: u32) -> Option<String> {
1515 /// x.checked_mul(x).map(|sq| sq.to_string())
1516 /// }
1517 ///
1518 /// assert_eq!(Some(2).and_then(sq_then_to_string), Some(4.to_string()));
1519 /// assert_eq!(Some(1_000_000).and_then(sq_then_to_string), None); // overflowed!
1520 /// assert_eq!(None.and_then(sq_then_to_string), None);
1521 /// ```
1522 ///
1523 /// Often used to chain fallible operations that may return [`None`].
1524 ///
1525 /// ```
1526 /// let arr_2d = [["A0", "A1"], ["B0", "B1"]];
1527 ///
1528 /// let item_0_1 = arr_2d.get(0).and_then(|row| row.get(1));
1529 /// assert_eq!(item_0_1, Some(&"A1"));
1530 ///
1531 /// let item_2_0 = arr_2d.get(2).and_then(|row| row.get(0));
1532 /// assert_eq!(item_2_0, None);
1533 /// ```
1534 #[doc(alias = "flatmap")]
1535 #[inline]
1536 #[stable(feature = "rust1", since = "1.0.0")]
1537 #[rustc_confusables("flat_map", "flatmap")]
1538 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1539 pub const fn and_then<U, F>(self, f: F) -> Option<U>
1540 where
1541 F: [const] FnOnce(T) -> Option<U> + [const] Destruct,
1542 {
1543 match self {
1544 Some(x) => f(x),
1545 None => None,
1546 }
1547 }
1548
1549 /// Returns [`None`] if the option is [`None`], otherwise calls `predicate`
1550 /// with the wrapped value and returns:
1551 ///
1552 /// - [`Some(t)`] if `predicate` returns `true` (where `t` is the wrapped
1553 /// value), and
1554 /// - [`None`] if `predicate` returns `false`.
1555 ///
1556 /// This function works similar to [`Iterator::filter()`]. You can imagine
1557 /// the `Option<T>` being an iterator over one or zero elements. `filter()`
1558 /// lets you decide which elements to keep.
1559 ///
1560 /// # Examples
1561 ///
1562 /// ```rust
1563 /// fn is_even(n: &i32) -> bool {
1564 /// n % 2 == 0
1565 /// }
1566 ///
1567 /// assert_eq!(None.filter(is_even), None);
1568 /// assert_eq!(Some(3).filter(is_even), None);
1569 /// assert_eq!(Some(4).filter(is_even), Some(4));
1570 /// ```
1571 ///
1572 /// [`Some(t)`]: Some
1573 #[inline]
1574 #[stable(feature = "option_filter", since = "1.27.0")]
1575 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1576 pub const fn filter<P>(self, predicate: P) -> Self
1577 where
1578 P: [const] FnOnce(&T) -> bool + [const] Destruct,
1579 T: [const] Destruct,
1580 {
1581 if let Some(x) = self {
1582 if predicate(&x) {
1583 return Some(x);
1584 }
1585 }
1586 None
1587 }
1588
1589 /// Returns the option if it contains a value, otherwise returns `optb`.
1590 ///
1591 /// Arguments passed to `or` are eagerly evaluated; if you are passing the
1592 /// result of a function call, it is recommended to use [`or_else`], which is
1593 /// lazily evaluated.
1594 ///
1595 /// [`or_else`]: Option::or_else
1596 ///
1597 /// # Examples
1598 ///
1599 /// ```
1600 /// let x = Some(2);
1601 /// let y = None;
1602 /// assert_eq!(x.or(y), Some(2));
1603 ///
1604 /// let x = None;
1605 /// let y = Some(100);
1606 /// assert_eq!(x.or(y), Some(100));
1607 ///
1608 /// let x = Some(2);
1609 /// let y = Some(100);
1610 /// assert_eq!(x.or(y), Some(2));
1611 ///
1612 /// let x: Option<u32> = None;
1613 /// let y = None;
1614 /// assert_eq!(x.or(y), None);
1615 /// ```
1616 #[inline]
1617 #[stable(feature = "rust1", since = "1.0.0")]
1618 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1619 pub const fn or(self, optb: Option<T>) -> Option<T>
1620 where
1621 T: [const] Destruct,
1622 {
1623 match self {
1624 x @ Some(_) => x,
1625 None => optb,
1626 }
1627 }
1628
1629 /// Returns the option if it contains a value, otherwise calls `f` and
1630 /// returns the result.
1631 ///
1632 /// # Examples
1633 ///
1634 /// ```
1635 /// fn nobody() -> Option<&'static str> { None }
1636 /// fn vikings() -> Option<&'static str> { Some("vikings") }
1637 ///
1638 /// assert_eq!(Some("barbarians").or_else(vikings), Some("barbarians"));
1639 /// assert_eq!(None.or_else(vikings), Some("vikings"));
1640 /// assert_eq!(None.or_else(nobody), None);
1641 /// ```
1642 #[inline]
1643 #[stable(feature = "rust1", since = "1.0.0")]
1644 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1645 pub const fn or_else<F>(self, f: F) -> Option<T>
1646 where
1647 F: [const] FnOnce() -> Option<T> + [const] Destruct,
1648 //FIXME(const_hack): this `T: [const] Destruct` is unnecessary, but even precise live drops can't tell
1649 // no value of type `T` gets dropped here
1650 T: [const] Destruct,
1651 {
1652 match self {
1653 x @ Some(_) => x,
1654 None => f(),
1655 }
1656 }
1657
1658 /// Returns [`Some`] if exactly one of `self`, `optb` is [`Some`], otherwise returns [`None`].
1659 ///
1660 /// # Examples
1661 ///
1662 /// ```
1663 /// let x = Some(2);
1664 /// let y: Option<u32> = None;
1665 /// assert_eq!(x.xor(y), Some(2));
1666 ///
1667 /// let x: Option<u32> = None;
1668 /// let y = Some(2);
1669 /// assert_eq!(x.xor(y), Some(2));
1670 ///
1671 /// let x = Some(2);
1672 /// let y = Some(2);
1673 /// assert_eq!(x.xor(y), None);
1674 ///
1675 /// let x: Option<u32> = None;
1676 /// let y: Option<u32> = None;
1677 /// assert_eq!(x.xor(y), None);
1678 /// ```
1679 #[inline]
1680 #[stable(feature = "option_xor", since = "1.37.0")]
1681 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1682 pub const fn xor(self, optb: Option<T>) -> Option<T>
1683 where
1684 T: [const] Destruct,
1685 {
1686 match (self, optb) {
1687 (a @ Some(_), None) => a,
1688 (None, b @ Some(_)) => b,
1689 _ => None,
1690 }
1691 }
1692
1693 /////////////////////////////////////////////////////////////////////////
1694 // Entry-like operations to insert a value and return a reference
1695 /////////////////////////////////////////////////////////////////////////
1696
1697 /// Inserts `value` into the option, then returns a mutable reference to it.
1698 ///
1699 /// If the option already contains a value, the old value is dropped.
1700 ///
1701 /// See also [`Option::get_or_insert`], which doesn't update the value if
1702 /// the option already contains [`Some`].
1703 ///
1704 /// # Example
1705 ///
1706 /// ```
1707 /// let mut opt = None;
1708 /// let val = opt.insert(1);
1709 /// assert_eq!(*val, 1);
1710 /// assert_eq!(opt.unwrap(), 1);
1711 /// let val = opt.insert(2);
1712 /// assert_eq!(*val, 2);
1713 /// *val = 3;
1714 /// assert_eq!(opt.unwrap(), 3);
1715 /// ```
1716 #[must_use = "if you intended to set a value, consider assignment instead"]
1717 #[inline]
1718 #[stable(feature = "option_insert", since = "1.53.0")]
1719 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1720 pub const fn insert(&mut self, value: T) -> &mut T
1721 where
1722 T: [const] Destruct,
1723 {
1724 *self = Some(value);
1725
1726 // SAFETY: the code above just filled the option
1727 unsafe { self.as_mut().unwrap_unchecked() }
1728 }
1729
1730 /// Inserts `value` into the option if it is [`None`], then
1731 /// returns a mutable reference to the contained value.
1732 ///
1733 /// See also [`Option::insert`], which updates the value even if
1734 /// the option already contains [`Some`].
1735 ///
1736 /// # Examples
1737 ///
1738 /// ```
1739 /// let mut x = None;
1740 ///
1741 /// {
1742 /// let y: &mut u32 = x.get_or_insert(5);
1743 /// assert_eq!(y, &5);
1744 ///
1745 /// *y = 7;
1746 /// }
1747 ///
1748 /// assert_eq!(x, Some(7));
1749 /// ```
1750 #[inline]
1751 #[stable(feature = "option_entry", since = "1.20.0")]
1752 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1753 pub const fn get_or_insert(&mut self, value: T) -> &mut T
1754 where
1755 T: [const] Destruct,
1756 {
1757 self.get_or_insert_with(const || value)
1758 }
1759
1760 /// Inserts the default value into the option if it is [`None`], then
1761 /// returns a mutable reference to the contained value.
1762 ///
1763 /// # Examples
1764 ///
1765 /// ```
1766 /// let mut x = None;
1767 ///
1768 /// {
1769 /// let y: &mut u32 = x.get_or_insert_default();
1770 /// assert_eq!(y, &0);
1771 ///
1772 /// *y = 7;
1773 /// }
1774 ///
1775 /// assert_eq!(x, Some(7));
1776 /// ```
1777 #[inline]
1778 #[stable(feature = "option_get_or_insert_default", since = "1.83.0")]
1779 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1780 pub const fn get_or_insert_default(&mut self) -> &mut T
1781 where
1782 T: [const] Default,
1783 {
1784 self.get_or_insert_with(T::default)
1785 }
1786
1787 /// Inserts a value computed from `f` into the option if it is [`None`],
1788 /// then returns a mutable reference to the contained value.
1789 ///
1790 /// # Examples
1791 ///
1792 /// ```
1793 /// let mut x = None;
1794 ///
1795 /// {
1796 /// let y: &mut u32 = x.get_or_insert_with(|| 5);
1797 /// assert_eq!(y, &5);
1798 ///
1799 /// *y = 7;
1800 /// }
1801 ///
1802 /// assert_eq!(x, Some(7));
1803 /// ```
1804 #[inline]
1805 #[stable(feature = "option_entry", since = "1.20.0")]
1806 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1807 pub const fn get_or_insert_with<F>(&mut self, f: F) -> &mut T
1808 where
1809 F: [const] FnOnce() -> T + [const] Destruct,
1810 {
1811 if let None = self {
1812 // The effect of the following statement is identical to
1813 // *self = Some(f());
1814 // except that it does not drop the old value of `*self`. This is not a leak, because
1815 // we just checked that the old value is `None`, which contains no fields to drop.
1816 // This implementation strategy
1817 //
1818 // * avoids needing a `T: [const] Destruct` bound, to the benefit of `const` callers,
1819 // * and avoids possibly compiling needless drop code (as would sometimes happen in the
1820 // previous implementation), to the benefit of non-`const` callers.
1821 //
1822 // FIXME(const-hack): It would be nice if this weird trick were made obsolete
1823 // (though that is likely to be hard/wontfix).
1824 //
1825 // It could also be expressed as `unsafe { core::ptr::write(self, Some(f())) }`, but
1826 // no reason is currently known to use additional unsafe code here.
1827
1828 mem::forget(self.replace(f()));
1829 }
1830
1831 // SAFETY: a `None` variant for `self` would have been replaced by a `Some`
1832 // variant in the code above.
1833 unsafe { self.as_mut().unwrap_unchecked() }
1834 }
1835
1836 /// If the option is `None`, calls the closure and inserts its output if successful.
1837 ///
1838 /// If the closure returns a residual value such as `Err` or `None`,
1839 /// that residual value is returned and nothing is inserted.
1840 ///
1841 /// If the option is `Some`, nothing is inserted.
1842 ///
1843 /// Unless a residual is returned, a mutable reference to the value
1844 /// of the option will be output.
1845 ///
1846 /// # Examples
1847 ///
1848 /// ```
1849 /// #![feature(option_get_or_try_insert_with)]
1850 /// let mut o1: Option<u32> = None;
1851 /// let mut o2: Option<u8> = None;
1852 ///
1853 /// let number = "12345";
1854 ///
1855 /// assert_eq!(o1.get_or_try_insert_with(|| number.parse()).copied(), Ok(12345));
1856 /// assert!(o2.get_or_try_insert_with(|| number.parse()).is_err());
1857 /// assert_eq!(o1, Some(12345));
1858 /// assert_eq!(o2, None);
1859 /// ```
1860 #[inline]
1861 #[unstable(feature = "option_get_or_try_insert_with", issue = "143648")]
1862 pub fn get_or_try_insert_with<'a, R, F>(
1863 &'a mut self,
1864 f: F,
1865 ) -> <R::Residual as Residual<&'a mut T>>::TryType
1866 where
1867 F: FnOnce() -> R,
1868 R: Try<Output = T, Residual: Residual<&'a mut T>>,
1869 {
1870 if let None = self {
1871 *self = Some(f()?);
1872 }
1873 // SAFETY: a `None` variant for `self` would have been replaced by a `Some`
1874 // variant in the code above.
1875
1876 Try::from_output(unsafe { self.as_mut().unwrap_unchecked() })
1877 }
1878
1879 /////////////////////////////////////////////////////////////////////////
1880 // Misc
1881 /////////////////////////////////////////////////////////////////////////
1882
1883 /// Takes the value out of the option, leaving a [`None`] in its place.
1884 ///
1885 /// # Examples
1886 ///
1887 /// ```
1888 /// let mut x = Some(2);
1889 /// let y = x.take();
1890 /// assert_eq!(x, None);
1891 /// assert_eq!(y, Some(2));
1892 ///
1893 /// let mut x: Option<u32> = None;
1894 /// let y = x.take();
1895 /// assert_eq!(x, None);
1896 /// assert_eq!(y, None);
1897 /// ```
1898 #[inline]
1899 #[stable(feature = "rust1", since = "1.0.0")]
1900 #[rustc_const_stable(feature = "const_option", since = "1.83.0")]
1901 #[expect(clippy::mem_replace_option_with_none, reason = "implements Option::take")]
1902 pub const fn take(&mut self) -> Option<T> {
1903 // FIXME(const-hack) replace `mem::replace` by `mem::take` when the latter is const ready
1904 mem::replace(self, None)
1905 }
1906
1907 /// Takes the value out of the option, but only if the predicate evaluates to
1908 /// `true` on a mutable reference to the value.
1909 ///
1910 /// In other words, replaces `self` with `None` if the predicate returns `true`.
1911 /// This method operates similar to [`Option::take`] but conditional.
1912 ///
1913 /// # Examples
1914 ///
1915 /// ```
1916 /// let mut x = Some(42);
1917 ///
1918 /// let prev = x.take_if(|v| if *v == 42 {
1919 /// *v += 1;
1920 /// false
1921 /// } else {
1922 /// false
1923 /// });
1924 /// assert_eq!(x, Some(43));
1925 /// assert_eq!(prev, None);
1926 ///
1927 /// let prev = x.take_if(|v| *v == 43);
1928 /// assert_eq!(x, None);
1929 /// assert_eq!(prev, Some(43));
1930 /// ```
1931 #[inline]
1932 #[stable(feature = "option_take_if", since = "1.80.0")]
1933 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1934 pub const fn take_if<P>(&mut self, predicate: P) -> Option<T>
1935 where
1936 P: [const] FnOnce(&mut T) -> bool + [const] Destruct,
1937 {
1938 if self.as_mut().is_some_and(predicate) { self.take() } else { None }
1939 }
1940
1941 /// Replaces the actual value in the option by the value given in parameter,
1942 /// returning the old value if present,
1943 /// leaving a [`Some`] in its place without deinitializing either one.
1944 ///
1945 /// # Examples
1946 ///
1947 /// ```
1948 /// let mut x = Some(2);
1949 /// let old = x.replace(5);
1950 /// assert_eq!(x, Some(5));
1951 /// assert_eq!(old, Some(2));
1952 ///
1953 /// let mut x = None;
1954 /// let old = x.replace(3);
1955 /// assert_eq!(x, Some(3));
1956 /// assert_eq!(old, None);
1957 /// ```
1958 #[inline]
1959 #[stable(feature = "option_replace", since = "1.31.0")]
1960 #[rustc_const_stable(feature = "const_option", since = "1.83.0")]
1961 #[expect(clippy::mem_replace_option_with_some, reason = "implements Option::replace")]
1962 pub const fn replace(&mut self, value: T) -> Option<T> {
1963 mem::replace(self, Some(value))
1964 }
1965
1966 /// Makes a tuple of the value in `self` and the value in another `Option`.
1967 ///
1968 /// If `self` is `Some(s)` and `other` is `Some(o)`, this method returns `Some((s, o))`.
1969 /// Otherwise, `None` is returned.
1970 ///
1971 /// # Examples
1972 ///
1973 /// ```
1974 /// let x = Some(1);
1975 /// let y = Some("hi");
1976 /// let z = None::<u8>;
1977 ///
1978 /// assert_eq!(x.zip(y), Some((1, "hi")));
1979 /// assert_eq!(x.zip(z), None);
1980 /// ```
1981 #[stable(feature = "option_zip_option", since = "1.46.0")]
1982 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
1983 pub const fn zip<U>(self, other: Option<U>) -> Option<(T, U)>
1984 where
1985 T: [const] Destruct,
1986 U: [const] Destruct,
1987 {
1988 match (self, other) {
1989 (Some(a), Some(b)) => Some((a, b)),
1990 _ => None,
1991 }
1992 }
1993
1994 /// Combines the value in `self` with the value in another `Option`, using the function `f`.
1995 ///
1996 /// If `self` is `Some(s)` and `other` is `Some(o)`, this method returns `Some(f(s, o))`.
1997 /// Otherwise, `None` is returned.
1998 ///
1999 /// # Examples
2000 ///
2001 /// ```
2002 /// #![feature(option_zip)]
2003 ///
2004 /// #[derive(Debug, PartialEq)]
2005 /// struct Point {
2006 /// x: f64,
2007 /// y: f64,
2008 /// }
2009 ///
2010 /// impl Point {
2011 /// fn new(x: f64, y: f64) -> Self {
2012 /// Self { x, y }
2013 /// }
2014 /// }
2015 ///
2016 /// let x = Some(17.5);
2017 /// let y = Some(42.7);
2018 ///
2019 /// assert_eq!(x.zip_with(y, Point::new), Some(Point { x: 17.5, y: 42.7 }));
2020 /// assert_eq!(x.zip_with(None, Point::new), None);
2021 /// ```
2022 #[unstable(feature = "option_zip", issue = "70086")]
2023 #[rustc_const_unstable(feature = "const_option_ops", issue = "143956")]
2024 pub const fn zip_with<U, F, R>(self, other: Option<U>, f: F) -> Option<R>
2025 where
2026 F: [const] FnOnce(T, U) -> R + [const] Destruct,
2027 T: [const] Destruct,
2028 U: [const] Destruct,
2029 {
2030 match (self, other) {
2031 (Some(a), Some(b)) => Some(f(a, b)),
2032 _ => None,
2033 }
2034 }
2035
2036 /// Reduces two options into one, using the provided function if both are `Some`.
2037 ///
2038 /// If `self` is `Some(s)` and `other` is `Some(o)`, this method returns `Some(f(s, o))`.
2039 /// Otherwise, if only one of `self` and `other` is `Some`, that one is returned.
2040 /// If both `self` and `other` are `None`, `None` is returned.
2041 ///
2042 /// # Examples
2043 ///
2044 /// ```
2045 /// #![feature(option_reduce)]
2046 ///
2047 /// let s12 = Some(12);
2048 /// let s17 = Some(17);
2049 /// let n = None;
2050 /// let f = |a, b| a + b;
2051 ///
2052 /// assert_eq!(s12.reduce(s17, f), Some(29));
2053 /// assert_eq!(s12.reduce(n, f), Some(12));
2054 /// assert_eq!(n.reduce(s17, f), Some(17));
2055 /// assert_eq!(n.reduce(n, f), None);
2056 /// ```
2057 #[unstable(feature = "option_reduce", issue = "144273")]
2058 pub fn reduce<U, R, F>(self, other: Option<U>, f: F) -> Option<R>
2059 where
2060 T: Into<R>,
2061 U: Into<R>,
2062 F: FnOnce(T, U) -> R,
2063 {
2064 match (self, other) {
2065 (Some(a), Some(b)) => Some(f(a, b)),
2066 (Some(a), _) => Some(a.into()),
2067 (_, Some(b)) => Some(b.into()),
2068 _ => None,
2069 }
2070 }
2071}
2072
2073impl<T: IntoIterator> Option<T> {
2074 /// Transforms an optional iterator into an iterator.
2075 ///
2076 /// If `self` is `None`, the resulting iterator is empty.
2077 /// Otherwise, an iterator is made from the `Some` value and returned.
2078 /// # Examples
2079 /// ```
2080 /// #![feature(option_into_flat_iter)]
2081 ///
2082 /// let o1 = Some([1, 2]);
2083 /// let o2 = None::<&[usize]>;
2084 ///
2085 /// assert_eq!(o1.into_flat_iter().collect::<Vec<_>>(), [1, 2]);
2086 /// assert_eq!(o2.into_flat_iter().collect::<Vec<_>>(), Vec::<&usize>::new());
2087 /// ```
2088 #[unstable(feature = "option_into_flat_iter", issue = "148441")]
2089 pub fn into_flat_iter(self) -> OptionFlatten<T::IntoIter> {
2090 OptionFlatten { iter: self.map(IntoIterator::into_iter) }
2091 }
2092}
2093
2094impl<T, U> Option<(T, U)> {
2095 /// Unzips an option containing a tuple of two options.
2096 ///
2097 /// If `self` is `Some((a, b))` this method returns `(Some(a), Some(b))`.
2098 /// Otherwise, `(None, None)` is returned.
2099 ///
2100 /// # Examples
2101 ///
2102 /// ```
2103 /// let x = Some((1, "hi"));
2104 /// let y = None::<(u8, u32)>;
2105 ///
2106 /// assert_eq!(x.unzip(), (Some(1), Some("hi")));
2107 /// assert_eq!(y.unzip(), (None, None));
2108 /// ```
2109 #[inline]
2110 #[stable(feature = "unzip_option", since = "1.66.0")]
2111 pub fn unzip(self) -> (Option<T>, Option<U>) {
2112 match self {
2113 Some((a, b)) => (Some(a), Some(b)),
2114 None => (None, None),
2115 }
2116 }
2117}
2118
2119impl<T> Option<&T> {
2120 /// Maps an `Option<&T>` to an `Option<T>` by copying the contents of the
2121 /// option.
2122 ///
2123 /// # Examples
2124 ///
2125 /// ```
2126 /// let x = 12;
2127 /// let opt_x = Some(&x);
2128 /// assert_eq!(opt_x, Some(&12));
2129 /// let copied = opt_x.copied();
2130 /// assert_eq!(copied, Some(12));
2131 /// ```
2132 #[must_use = "`self` will be dropped if the result is not used"]
2133 #[stable(feature = "copied", since = "1.35.0")]
2134 #[rustc_const_stable(feature = "const_option", since = "1.83.0")]
2135 pub const fn copied(self) -> Option<T>
2136 where
2137 T: Copy,
2138 {
2139 // FIXME(const-hack): this implementation, which sidesteps using `Option::map` since it's not const
2140 // ready yet, should be reverted when possible to avoid code repetition
2141 match self {
2142 Some(&v) => Some(v),
2143 None => None,
2144 }
2145 }
2146
2147 /// Maps an `Option<&T>` to an `Option<T>` by cloning the contents of the
2148 /// option.
2149 ///
2150 /// # Examples
2151 ///
2152 /// ```
2153 /// let x = 12;
2154 /// let opt_x = Some(&x);
2155 /// assert_eq!(opt_x, Some(&12));
2156 /// let cloned = opt_x.cloned();
2157 /// assert_eq!(cloned, Some(12));
2158 /// ```
2159 #[must_use = "`self` will be dropped if the result is not used"]
2160 #[stable(feature = "rust1", since = "1.0.0")]
2161 #[expect(clippy::map_clone, reason = "implements Option::cloned")]
2162 pub fn cloned(self) -> Option<T>
2163 where
2164 T: Clone,
2165 {
2166 self.map(T::clone)
2167 }
2168}
2169
2170impl<T> Option<&mut T> {
2171 /// Maps an `Option<&mut T>` to an `Option<T>` by copying the contents of the
2172 /// option.
2173 ///
2174 /// # Examples
2175 ///
2176 /// ```
2177 /// let mut x = 12;
2178 /// let opt_x = Some(&mut x);
2179 /// assert_eq!(opt_x, Some(&mut 12));
2180 /// let copied = opt_x.copied();
2181 /// assert_eq!(copied, Some(12));
2182 /// ```
2183 #[must_use = "`self` will be dropped if the result is not used"]
2184 #[stable(feature = "copied", since = "1.35.0")]
2185 #[rustc_const_stable(feature = "const_option", since = "1.83.0")]
2186 pub const fn copied(self) -> Option<T>
2187 where
2188 T: Copy,
2189 {
2190 match self {
2191 Some(&mut t) => Some(t),
2192 None => None,
2193 }
2194 }
2195
2196 /// Maps an `Option<&mut T>` to an `Option<T>` by cloning the contents of the
2197 /// option.
2198 ///
2199 /// # Examples
2200 ///
2201 /// ```
2202 /// let mut x = 12;
2203 /// let opt_x = Some(&mut x);
2204 /// assert_eq!(opt_x, Some(&mut 12));
2205 /// let cloned = opt_x.cloned();
2206 /// assert_eq!(cloned, Some(12));
2207 /// ```
2208 #[must_use = "`self` will be dropped if the result is not used"]
2209 #[stable(since = "1.26.0", feature = "option_ref_mut_cloned")]
2210 pub fn cloned(self) -> Option<T>
2211 where
2212 T: Clone,
2213 {
2214 self.as_deref().cloned()
2215 }
2216}
2217
2218impl<T, E> Option<Result<T, E>> {
2219 /// Transposes an `Option` of a [`Result`] into a [`Result`] of an `Option`.
2220 ///
2221 /// <code>[Some]\([Ok]\(\_))</code> is mapped to <code>[Ok]\([Some]\(\_))</code>,
2222 /// <code>[Some]\([Err]\(\_))</code> is mapped to <code>[Err]\(\_)</code>,
2223 /// and [`None`] will be mapped to <code>[Ok]\([None])</code>.
2224 ///
2225 /// # Examples
2226 ///
2227 /// ```
2228 /// #[derive(Debug, Eq, PartialEq)]
2229 /// struct SomeErr;
2230 ///
2231 /// let x: Option<Result<i32, SomeErr>> = Some(Ok(5));
2232 /// let y: Result<Option<i32>, SomeErr> = Ok(Some(5));
2233 /// assert_eq!(x.transpose(), y);
2234 /// ```
2235 #[inline]
2236 #[stable(feature = "transpose_result", since = "1.33.0")]
2237 #[rustc_allow_const_fn_unstable(const_precise_live_drops)]
2238 #[rustc_const_stable(feature = "const_option", since = "1.83.0")]
2239 pub const fn transpose(self) -> Result<Option<T>, E> {
2240 match self {
2241 Some(Ok(x)) => Ok(Some(x)),
2242 Some(Err(e)) => Err(e),
2243 None => Ok(None),
2244 }
2245 }
2246}
2247
2248#[cfg_attr(not(panic = "immediate-abort"), inline(never))]
2249#[cfg_attr(panic = "immediate-abort", inline)]
2250#[cold]
2251#[track_caller]
2252const fn unwrap_failed() -> ! {
2253 panic("called `Option::unwrap()` on a `None` value")
2254}
2255
2256// This is a separate function to reduce the code size of .expect() itself.
2257#[cfg_attr(not(panic = "immediate-abort"), inline(never))]
2258#[cfg_attr(panic = "immediate-abort", inline)]
2259#[cold]
2260#[track_caller]
2261const fn expect_failed(msg: &str) -> ! {
2262 panic_display(&msg)
2263}
2264
2265/////////////////////////////////////////////////////////////////////////////
2266// Trait implementations
2267/////////////////////////////////////////////////////////////////////////////
2268
2269#[stable(feature = "rust1", since = "1.0.0")]
2270#[rustc_const_unstable(feature = "const_clone", issue = "142757")]
2271const impl<T> Clone for Option<T>
2272where
2273 // FIXME(const_hack): the T: [const] Destruct should be inferred from the Self: [const] Destruct in clone_from.
2274 // See https://github.com/rust-lang/rust/issues/144207
2275 T: [const] Clone + [const] Destruct,
2276{
2277 #[inline]
2278 fn clone(&self) -> Self {
2279 match self {
2280 Some(x) => Some(x.clone()),
2281 None => None,
2282 }
2283 }
2284
2285 #[inline]
2286 fn clone_from(&mut self, source: &Self) {
2287 match (self, source) {
2288 (Some(to), Some(from)) => to.clone_from(from),
2289 (to, from) => *to = from.clone(),
2290 }
2291 }
2292}
2293
2294#[unstable(feature = "ergonomic_clones", issue = "132290")]
2295impl<T> crate::clone::UseCloned for Option<T> where T: crate::clone::UseCloned {}
2296
2297#[doc(hidden)]
2298#[unstable(feature = "trivial_clone", issue = "none")]
2299#[rustc_const_unstable(feature = "const_clone", issue = "142757")]
2300const unsafe impl<T> TrivialClone for Option<T> where T: [const] TrivialClone + [const] Destruct {}
2301
2302#[stable(feature = "rust1", since = "1.0.0")]
2303#[rustc_const_unstable(feature = "const_default", issue = "143894")]
2304const impl<T> Default for Option<T> {
2305 /// Returns [`None`][Option::None].
2306 ///
2307 /// # Examples
2308 ///
2309 /// ```
2310 /// let opt: Option<u32> = Option::default();
2311 /// assert!(opt.is_none());
2312 /// ```
2313 #[inline]
2314 fn default() -> Option<T> {
2315 None
2316 }
2317}
2318
2319#[stable(feature = "rust1", since = "1.0.0")]
2320#[rustc_const_unstable(feature = "const_iter", issue = "92476")]
2321const impl<T> IntoIterator for Option<T> {
2322 type Item = T;
2323 type IntoIter = IntoIter<T>;
2324
2325 /// Returns a consuming iterator over the possibly contained value.
2326 ///
2327 /// # Examples
2328 ///
2329 /// ```
2330 /// let x = Some("string");
2331 /// let v: Vec<&str> = x.into_iter().collect();
2332 /// assert_eq!(v, ["string"]);
2333 ///
2334 /// let x = None;
2335 /// let v: Vec<&str> = x.into_iter().collect();
2336 /// assert!(v.is_empty());
2337 /// ```
2338 #[inline]
2339 fn into_iter(self) -> IntoIter<T> {
2340 IntoIter { inner: Item { opt: self } }
2341 }
2342}
2343
2344#[stable(since = "1.4.0", feature = "option_iter")]
2345impl<'a, T> IntoIterator for &'a Option<T> {
2346 type Item = &'a T;
2347 type IntoIter = Iter<'a, T>;
2348
2349 fn into_iter(self) -> Iter<'a, T> {
2350 self.iter()
2351 }
2352}
2353
2354#[stable(since = "1.4.0", feature = "option_iter")]
2355impl<'a, T> IntoIterator for &'a mut Option<T> {
2356 type Item = &'a mut T;
2357 type IntoIter = IterMut<'a, T>;
2358
2359 fn into_iter(self) -> IterMut<'a, T> {
2360 self.iter_mut()
2361 }
2362}
2363
2364#[stable(since = "1.12.0", feature = "option_from")]
2365#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
2366const impl<T> From<T> for Option<T> {
2367 /// Moves `val` into a new [`Some`].
2368 ///
2369 /// # Examples
2370 ///
2371 /// ```
2372 /// let o: Option<u8> = Option::from(67);
2373 ///
2374 /// assert_eq!(Some(67), o);
2375 /// ```
2376 fn from(val: T) -> Option<T> {
2377 Some(val)
2378 }
2379}
2380
2381#[stable(feature = "option_ref_from_ref_option", since = "1.30.0")]
2382#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
2383const impl<'a, T> From<&'a Option<T>> for Option<&'a T> {
2384 /// Converts from `&Option<T>` to `Option<&T>`.
2385 ///
2386 /// # Examples
2387 ///
2388 /// Converts an <code>[Option]<[String]></code> into an <code>[Option]<[usize]></code>, preserving
2389 /// the original. The [`map`] method takes the `self` argument by value, consuming the original,
2390 /// so this technique uses `from` to first take an [`Option`] to a reference
2391 /// to the value inside the original.
2392 ///
2393 /// [`map`]: Option::map
2394 /// [String]: ../../std/string/struct.String.html "String"
2395 ///
2396 /// ```
2397 /// let s: Option<String> = Some(String::from("Hello, Rustaceans!"));
2398 /// let o: Option<usize> = Option::from(&s).map(|ss: &String| ss.len());
2399 ///
2400 /// println!("Can still print s: {s:?}");
2401 ///
2402 /// assert_eq!(o, Some(18));
2403 /// ```
2404 fn from(o: &'a Option<T>) -> Option<&'a T> {
2405 o.as_ref()
2406 }
2407}
2408
2409#[stable(feature = "option_ref_from_ref_option", since = "1.30.0")]
2410#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
2411const impl<'a, T> From<&'a mut Option<T>> for Option<&'a mut T> {
2412 /// Converts from `&mut Option<T>` to `Option<&mut T>`
2413 ///
2414 /// # Examples
2415 ///
2416 /// ```
2417 /// let mut s = Some(String::from("Hello"));
2418 /// let o: Option<&mut String> = Option::from(&mut s);
2419 ///
2420 /// match o {
2421 /// Some(t) => *t = String::from("Hello, Rustaceans!"),
2422 /// None => (),
2423 /// }
2424 ///
2425 /// assert_eq!(s, Some(String::from("Hello, Rustaceans!")));
2426 /// ```
2427 fn from(o: &'a mut Option<T>) -> Option<&'a mut T> {
2428 o.as_mut()
2429 }
2430}
2431
2432// Ideally, LLVM should be able to optimize our derive code to this.
2433// Once https://github.com/llvm/llvm-project/issues/52622 is fixed, we can
2434// go back to deriving `PartialEq`.
2435#[stable(feature = "rust1", since = "1.0.0")]
2436impl<T> crate::marker::StructuralPartialEq for Option<T> {}
2437#[stable(feature = "rust1", since = "1.0.0")]
2438#[rustc_const_unstable(feature = "const_cmp", issue = "143800")]
2439const impl<T: [const] PartialEq> PartialEq for Option<T> {
2440 #[inline]
2441 fn eq(&self, other: &Self) -> bool {
2442 // Spelling out the cases explicitly optimizes better than
2443 // `_ => false`
2444 match (self, other) {
2445 (Some(l), Some(r)) => *l == *r,
2446 (Some(_), None) => false,
2447 (None, Some(_)) => false,
2448 (None, None) => true,
2449 }
2450 }
2451}
2452
2453// Manually implementing here somewhat improves codegen for
2454// https://github.com/rust-lang/rust/issues/49892, although still
2455// not optimal.
2456#[stable(feature = "rust1", since = "1.0.0")]
2457#[rustc_const_unstable(feature = "const_cmp", issue = "143800")]
2458const impl<T: [const] PartialOrd> PartialOrd for Option<T> {
2459 #[inline]
2460 fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
2461 match (self, other) {
2462 (Some(l), Some(r)) => l.partial_cmp(r),
2463 (Some(_), None) => Some(cmp::Ordering::Greater),
2464 (None, Some(_)) => Some(cmp::Ordering::Less),
2465 (None, None) => Some(cmp::Ordering::Equal),
2466 }
2467 }
2468}
2469
2470#[stable(feature = "rust1", since = "1.0.0")]
2471#[rustc_const_unstable(feature = "const_cmp", issue = "143800")]
2472const impl<T: [const] Ord> Ord for Option<T> {
2473 #[inline]
2474 fn cmp(&self, other: &Self) -> cmp::Ordering {
2475 match (self, other) {
2476 (Some(l), Some(r)) => l.cmp(r),
2477 (Some(_), None) => cmp::Ordering::Greater,
2478 (None, Some(_)) => cmp::Ordering::Less,
2479 (None, None) => cmp::Ordering::Equal,
2480 }
2481 }
2482}
2483
2484/////////////////////////////////////////////////////////////////////////////
2485// The Option Iterators
2486/////////////////////////////////////////////////////////////////////////////
2487
2488#[derive(Clone, Debug)]
2489struct Item<A> {
2490 opt: Option<A>,
2491}
2492
2493#[rustc_const_unstable(feature = "const_iter", issue = "92476")]
2494const impl<A> Iterator for Item<A> {
2495 type Item = A;
2496
2497 #[inline]
2498 fn next(&mut self) -> Option<A> {
2499 self.opt.take()
2500 }
2501
2502 #[inline]
2503 fn size_hint(&self) -> (usize, Option<usize>) {
2504 let len = self.opt.len();
2505 (len, Some(len))
2506 }
2507}
2508
2509impl<A> DoubleEndedIterator for Item<A> {
2510 #[inline]
2511 fn next_back(&mut self) -> Option<A> {
2512 self.opt.take()
2513 }
2514}
2515
2516impl<A> ExactSizeIterator for Item<A> {
2517 #[inline]
2518 fn len(&self) -> usize {
2519 self.opt.len()
2520 }
2521}
2522impl<A> FusedIterator for Item<A> {}
2523unsafe impl<A> TrustedLen for Item<A> {}
2524
2525/// An iterator over a reference to the [`Some`] variant of an [`Option`].
2526///
2527/// The iterator yields one value if the [`Option`] is a [`Some`], otherwise none.
2528///
2529/// This `struct` is created by the [`Option::iter`] function.
2530#[stable(feature = "rust1", since = "1.0.0")]
2531#[derive(Debug)]
2532pub struct Iter<'a, A: 'a> {
2533 inner: Item<&'a A>,
2534}
2535
2536#[stable(feature = "rust1", since = "1.0.0")]
2537impl<'a, A> Iterator for Iter<'a, A> {
2538 type Item = &'a A;
2539
2540 #[inline]
2541 fn next(&mut self) -> Option<&'a A> {
2542 self.inner.next()
2543 }
2544 #[inline]
2545 fn size_hint(&self) -> (usize, Option<usize>) {
2546 self.inner.size_hint()
2547 }
2548}
2549
2550#[stable(feature = "rust1", since = "1.0.0")]
2551impl<'a, A> DoubleEndedIterator for Iter<'a, A> {
2552 #[inline]
2553 fn next_back(&mut self) -> Option<&'a A> {
2554 self.inner.next_back()
2555 }
2556}
2557
2558#[stable(feature = "rust1", since = "1.0.0")]
2559impl<A> ExactSizeIterator for Iter<'_, A> {}
2560
2561#[stable(feature = "fused", since = "1.26.0")]
2562impl<A> FusedIterator for Iter<'_, A> {}
2563
2564#[unstable(feature = "trusted_len", issue = "37572")]
2565unsafe impl<A> TrustedLen for Iter<'_, A> {}
2566
2567#[stable(feature = "rust1", since = "1.0.0")]
2568impl<A> Clone for Iter<'_, A> {
2569 #[inline]
2570 fn clone(&self) -> Self {
2571 Iter { inner: self.inner.clone() }
2572 }
2573}
2574
2575/// An iterator over a mutable reference to the [`Some`] variant of an [`Option`].
2576///
2577/// The iterator yields one value if the [`Option`] is a [`Some`], otherwise none.
2578///
2579/// This `struct` is created by the [`Option::iter_mut`] function.
2580#[stable(feature = "rust1", since = "1.0.0")]
2581#[derive(Debug)]
2582pub struct IterMut<'a, A: 'a> {
2583 inner: Item<&'a mut A>,
2584}
2585
2586#[stable(feature = "rust1", since = "1.0.0")]
2587impl<'a, A> Iterator for IterMut<'a, A> {
2588 type Item = &'a mut A;
2589
2590 #[inline]
2591 fn next(&mut self) -> Option<&'a mut A> {
2592 self.inner.next()
2593 }
2594 #[inline]
2595 fn size_hint(&self) -> (usize, Option<usize>) {
2596 self.inner.size_hint()
2597 }
2598}
2599
2600#[stable(feature = "rust1", since = "1.0.0")]
2601impl<'a, A> DoubleEndedIterator for IterMut<'a, A> {
2602 #[inline]
2603 fn next_back(&mut self) -> Option<&'a mut A> {
2604 self.inner.next_back()
2605 }
2606}
2607
2608#[stable(feature = "rust1", since = "1.0.0")]
2609impl<A> ExactSizeIterator for IterMut<'_, A> {}
2610
2611#[stable(feature = "fused", since = "1.26.0")]
2612impl<A> FusedIterator for IterMut<'_, A> {}
2613#[unstable(feature = "trusted_len", issue = "37572")]
2614unsafe impl<A> TrustedLen for IterMut<'_, A> {}
2615
2616/// An iterator over the value in [`Some`] variant of an [`Option`].
2617///
2618/// The iterator yields one value if the [`Option`] is a [`Some`], otherwise none.
2619///
2620/// This `struct` is created by the [`Option::into_iter`] function.
2621#[derive(Clone, Debug)]
2622#[stable(feature = "rust1", since = "1.0.0")]
2623pub struct IntoIter<A> {
2624 inner: Item<A>,
2625}
2626
2627#[stable(feature = "rust1", since = "1.0.0")]
2628#[rustc_const_unstable(feature = "const_iter", issue = "92476")]
2629const impl<A> Iterator for IntoIter<A> {
2630 type Item = A;
2631
2632 #[inline]
2633 fn next(&mut self) -> Option<A> {
2634 self.inner.next()
2635 }
2636 #[inline]
2637 fn size_hint(&self) -> (usize, Option<usize>) {
2638 self.inner.size_hint()
2639 }
2640}
2641
2642#[stable(feature = "rust1", since = "1.0.0")]
2643impl<A> DoubleEndedIterator for IntoIter<A> {
2644 #[inline]
2645 fn next_back(&mut self) -> Option<A> {
2646 self.inner.next_back()
2647 }
2648}
2649
2650#[stable(feature = "rust1", since = "1.0.0")]
2651impl<A> ExactSizeIterator for IntoIter<A> {}
2652
2653#[stable(feature = "fused", since = "1.26.0")]
2654impl<A> FusedIterator for IntoIter<A> {}
2655
2656#[unstable(feature = "trusted_len", issue = "37572")]
2657#[rustc_const_unstable(feature = "const_iter", issue = "92476")]
2658const unsafe impl<A> TrustedLen for IntoIter<A> {}
2659
2660/// The iterator produced by [`Option::into_flat_iter`]. See its documentation for more.
2661#[derive(Clone, Debug)]
2662#[unstable(feature = "option_into_flat_iter", issue = "148441")]
2663pub struct OptionFlatten<A> {
2664 iter: Option<A>,
2665}
2666
2667#[unstable(feature = "option_into_flat_iter", issue = "148441")]
2668impl<A: Iterator> Iterator for OptionFlatten<A> {
2669 type Item = A::Item;
2670
2671 fn next(&mut self) -> Option<Self::Item> {
2672 match &mut self.iter {
2673 Some(iter) => iter.next(),
2674 None => None,
2675 }
2676 }
2677
2678 fn size_hint(&self) -> (usize, Option<usize>) {
2679 match &self.iter {
2680 Some(iter) => iter.size_hint(),
2681 None => (0, Some(0)),
2682 }
2683 }
2684
2685 fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
2686 match &mut self.iter {
2687 Some(iter) => iter.advance_by(n),
2688 None => NonZero::new(n).map_or(Ok(()), Err),
2689 }
2690 }
2691
2692 fn nth(&mut self, n: usize) -> Option<Self::Item> {
2693 match &mut self.iter {
2694 Some(iter) => iter.nth(n),
2695 None => None,
2696 }
2697 }
2698
2699 fn fold<Acc, Fold>(self, init: Acc, fold: Fold) -> Acc
2700 where
2701 Fold: FnMut(Acc, Self::Item) -> Acc,
2702 {
2703 match self.iter {
2704 Some(iter) => iter.fold(init, fold),
2705 None => init,
2706 }
2707 }
2708
2709 fn try_fold<Acc, Fold, R>(&mut self, init: Acc, fold: Fold) -> R
2710 where
2711 Fold: FnMut(Acc, Self::Item) -> R,
2712 R: Try<Output = Acc>,
2713 {
2714 match &mut self.iter {
2715 Some(iter) => iter.try_fold(init, fold),
2716 None => try { init },
2717 }
2718 }
2719
2720 fn count(self) -> usize {
2721 match self.iter {
2722 Some(iter) => iter.count(),
2723 None => 0,
2724 }
2725 }
2726
2727 fn last(self) -> Option<Self::Item> {
2728 match self.iter {
2729 Some(iter) => iter.last(),
2730 None => None,
2731 }
2732 }
2733}
2734
2735#[unstable(feature = "option_into_flat_iter", issue = "148441")]
2736impl<A: DoubleEndedIterator> DoubleEndedIterator for OptionFlatten<A> {
2737 fn next_back(&mut self) -> Option<Self::Item> {
2738 match &mut self.iter {
2739 Some(iter) => iter.next_back(),
2740 None => None,
2741 }
2742 }
2743
2744 fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
2745 match &mut self.iter {
2746 Some(iter) => iter.advance_back_by(n),
2747 None => NonZero::new(n).map_or(Ok(()), Err),
2748 }
2749 }
2750
2751 fn nth_back(&mut self, n: usize) -> Option<Self::Item> {
2752 match &mut self.iter {
2753 Some(iter) => iter.nth_back(n),
2754 None => None,
2755 }
2756 }
2757
2758 fn rfold<Acc, Fold>(self, init: Acc, fold: Fold) -> Acc
2759 where
2760 Fold: FnMut(Acc, Self::Item) -> Acc,
2761 {
2762 match self.iter {
2763 Some(iter) => iter.rfold(init, fold),
2764 None => init,
2765 }
2766 }
2767
2768 fn try_rfold<Acc, Fold, R>(&mut self, init: Acc, fold: Fold) -> R
2769 where
2770 Fold: FnMut(Acc, Self::Item) -> R,
2771 R: Try<Output = Acc>,
2772 {
2773 match &mut self.iter {
2774 Some(iter) => iter.try_rfold(init, fold),
2775 None => try { init },
2776 }
2777 }
2778}
2779
2780#[unstable(feature = "option_into_flat_iter", issue = "148441")]
2781impl<A: ExactSizeIterator> ExactSizeIterator for OptionFlatten<A> {}
2782
2783#[unstable(feature = "option_into_flat_iter", issue = "148441")]
2784impl<A: FusedIterator> FusedIterator for OptionFlatten<A> {}
2785
2786#[unstable(feature = "option_into_flat_iter", issue = "148441")]
2787unsafe impl<A: TrustedLen> TrustedLen for OptionFlatten<A> {}
2788
2789/////////////////////////////////////////////////////////////////////////////
2790// FromIterator
2791/////////////////////////////////////////////////////////////////////////////
2792
2793#[stable(feature = "rust1", since = "1.0.0")]
2794impl<A, V: FromIterator<A>> FromIterator<Option<A>> for Option<V> {
2795 /// Takes each element in the [`Iterator`]: if it is [`None`][Option::None],
2796 /// no further elements are taken, and the [`None`][Option::None] is
2797 /// returned. Should no [`None`][Option::None] occur, a container of type
2798 /// `V` containing the values of each [`Option`] is returned.
2799 ///
2800 /// # Examples
2801 ///
2802 /// Here is an example which increments every integer in a vector.
2803 /// We use the checked variant of `add` that returns `None` when the
2804 /// calculation would result in an overflow.
2805 ///
2806 /// ```
2807 /// let items = vec![0_u16, 1, 2];
2808 ///
2809 /// let res: Option<Vec<u16>> = items
2810 /// .iter()
2811 /// .map(|x| x.checked_add(1))
2812 /// .collect();
2813 ///
2814 /// assert_eq!(res, Some(vec![1, 2, 3]));
2815 /// ```
2816 ///
2817 /// As you can see, this will return the expected, valid items.
2818 ///
2819 /// Here is another example that tries to subtract one from another list
2820 /// of integers, this time checking for underflow:
2821 ///
2822 /// ```
2823 /// let items = vec![2_u16, 1, 0];
2824 ///
2825 /// let res: Option<Vec<u16>> = items
2826 /// .iter()
2827 /// .map(|x| x.checked_sub(1))
2828 /// .collect();
2829 ///
2830 /// assert_eq!(res, None);
2831 /// ```
2832 ///
2833 /// Since the last element is zero, it would underflow. Thus, the resulting
2834 /// value is `None`.
2835 ///
2836 /// Here is a variation on the previous example, showing that no
2837 /// further elements are taken from `iter` after the first `None`.
2838 ///
2839 /// ```
2840 /// let items = vec![3_u16, 2, 1, 10];
2841 ///
2842 /// let mut shared = 0;
2843 ///
2844 /// let res: Option<Vec<u16>> = items
2845 /// .iter()
2846 /// .map(|x| { shared += x; x.checked_sub(2) })
2847 /// .collect();
2848 ///
2849 /// assert_eq!(res, None);
2850 /// assert_eq!(shared, 6);
2851 /// ```
2852 ///
2853 /// Since the third element caused an underflow, no further elements were taken,
2854 /// so the final value of `shared` is 6 (= `3 + 2 + 1`), not 16.
2855 #[inline]
2856 fn from_iter<I: IntoIterator<Item = Option<A>>>(iter: I) -> Option<V> {
2857 iter::try_process(iter.into_iter(), |i| i.collect())
2858 }
2859}
2860
2861#[unstable(feature = "try_trait_v2", issue = "84277", old_name = "try_trait")]
2862#[rustc_const_unstable(feature = "const_try", issue = "74935")]
2863const impl<T> ops::Try for Option<T> {
2864 type Output = T;
2865 type Residual = Option<convert::Infallible>;
2866
2867 #[inline]
2868 fn from_output(output: Self::Output) -> Self {
2869 Some(output)
2870 }
2871
2872 #[inline]
2873 fn branch(self) -> ControlFlow<Self::Residual, Self::Output> {
2874 match self {
2875 Some(v) => ControlFlow::Continue(v),
2876 None => ControlFlow::Break(None),
2877 }
2878 }
2879}
2880
2881#[unstable(feature = "try_trait_v2", issue = "84277", old_name = "try_trait")]
2882#[rustc_const_unstable(feature = "const_try", issue = "74935")]
2883// Note: manually specifying the residual type instead of using the default to work around
2884// https://github.com/rust-lang/rust/issues/99940
2885const impl<T> ops::FromResidual<Option<convert::Infallible>> for Option<T> {
2886 #[inline]
2887 fn from_residual(residual: Option<convert::Infallible>) -> Self {
2888 match residual {
2889 None => None,
2890 }
2891 }
2892}
2893
2894#[diagnostic::do_not_recommend]
2895#[unstable(feature = "try_trait_v2_yeet", issue = "96374")]
2896#[rustc_const_unstable(feature = "const_try", issue = "74935")]
2897const impl<T> ops::FromResidual<ops::Yeet<()>> for Option<T> {
2898 #[inline]
2899 fn from_residual(ops::Yeet(()): ops::Yeet<()>) -> Self {
2900 None
2901 }
2902}
2903
2904#[unstable(feature = "try_trait_v2_residual", issue = "91285")]
2905#[rustc_const_unstable(feature = "const_try", issue = "74935")]
2906const impl<T> ops::Residual<T> for Option<convert::Infallible> {
2907 type TryType = Option<T>;
2908}
2909
2910impl<T> Option<Option<T>> {
2911 /// Converts from `Option<Option<T>>` to `Option<T>`.
2912 ///
2913 /// # Examples
2914 ///
2915 /// Basic usage:
2916 ///
2917 /// ```
2918 /// let x: Option<Option<u32>> = Some(Some(6));
2919 /// assert_eq!(Some(6), x.flatten());
2920 ///
2921 /// let x: Option<Option<u32>> = Some(None);
2922 /// assert_eq!(None, x.flatten());
2923 ///
2924 /// let x: Option<Option<u32>> = None;
2925 /// assert_eq!(None, x.flatten());
2926 /// ```
2927 ///
2928 /// Flattening only removes one level of nesting at a time:
2929 ///
2930 /// ```
2931 /// let x: Option<Option<Option<u32>>> = Some(Some(Some(6)));
2932 /// assert_eq!(Some(Some(6)), x.flatten());
2933 /// assert_eq!(Some(6), x.flatten().flatten());
2934 /// ```
2935 #[inline]
2936 #[stable(feature = "option_flattening", since = "1.40.0")]
2937 #[rustc_allow_const_fn_unstable(const_precise_live_drops)]
2938 #[rustc_const_stable(feature = "const_option", since = "1.83.0")]
2939 pub const fn flatten(self) -> Option<T> {
2940 // FIXME(const-hack): could be written with `and_then`
2941 match self {
2942 Some(inner) => inner,
2943 None => None,
2944 }
2945 }
2946}
2947
2948impl<'a, T> Option<&'a Option<T>> {
2949 /// Converts from `Option<&Option<T>>` to `Option<&T>`.
2950 ///
2951 /// # Examples
2952 ///
2953 /// Basic usage:
2954 ///
2955 /// ```
2956 /// #![feature(option_reference_flattening)]
2957 ///
2958 /// let x: Option<&Option<u32>> = Some(&Some(6));
2959 /// assert_eq!(Some(&6), x.flatten_ref());
2960 ///
2961 /// let x: Option<&Option<u32>> = Some(&None);
2962 /// assert_eq!(None, x.flatten_ref());
2963 ///
2964 /// let x: Option<&Option<u32>> = None;
2965 /// assert_eq!(None, x.flatten_ref());
2966 /// ```
2967 #[inline]
2968 #[unstable(feature = "option_reference_flattening", issue = "149221")]
2969 pub const fn flatten_ref(self) -> Option<&'a T> {
2970 match self {
2971 Some(inner) => inner.as_ref(),
2972 None => None,
2973 }
2974 }
2975}
2976
2977impl<'a, T> Option<&'a mut Option<T>> {
2978 /// Converts from `Option<&mut Option<T>>` to `&Option<T>`.
2979 ///
2980 /// # Examples
2981 ///
2982 /// Basic usage:
2983 ///
2984 /// ```
2985 /// #![feature(option_reference_flattening)]
2986 ///
2987 /// let y = &mut Some(6);
2988 /// let x: Option<&mut Option<u32>> = Some(y);
2989 /// assert_eq!(Some(&6), x.flatten_ref());
2990 ///
2991 /// let y: &mut Option<u32> = &mut None;
2992 /// let x: Option<&mut Option<u32>> = Some(y);
2993 /// assert_eq!(None, x.flatten_ref());
2994 ///
2995 /// let x: Option<&mut Option<u32>> = None;
2996 /// assert_eq!(None, x.flatten_ref());
2997 /// ```
2998 #[inline]
2999 #[unstable(feature = "option_reference_flattening", issue = "149221")]
3000 pub const fn flatten_ref(self) -> Option<&'a T> {
3001 match self {
3002 Some(inner) => inner.as_ref(),
3003 None => None,
3004 }
3005 }
3006
3007 /// Converts from `Option<&mut Option<T>>` to `Option<&mut T>`.
3008 ///
3009 /// # Examples
3010 ///
3011 /// Basic usage:
3012 ///
3013 /// ```
3014 /// #![feature(option_reference_flattening)]
3015 ///
3016 /// let y: &mut Option<u32> = &mut Some(6);
3017 /// let x: Option<&mut Option<u32>> = Some(y);
3018 /// assert_eq!(Some(&mut 6), x.flatten_mut());
3019 ///
3020 /// let y: &mut Option<u32> = &mut None;
3021 /// let x: Option<&mut Option<u32>> = Some(y);
3022 /// assert_eq!(None, x.flatten_mut());
3023 ///
3024 /// let x: Option<&mut Option<u32>> = None;
3025 /// assert_eq!(None, x.flatten_mut());
3026 /// ```
3027 #[inline]
3028 #[unstable(feature = "option_reference_flattening", issue = "149221")]
3029 pub const fn flatten_mut(self) -> Option<&'a mut T> {
3030 match self {
3031 Some(inner) => inner.as_mut(),
3032 None => None,
3033 }
3034 }
3035}
3036
3037impl<T, const N: usize> [Option<T>; N] {
3038 /// Transposes a `[Option<T>; N]` into a `Option<[T; N]>`.
3039 ///
3040 /// # Examples
3041 ///
3042 /// ```
3043 /// #![feature(option_array_transpose)]
3044 /// # use std::option::Option;
3045 ///
3046 /// let data = [Some(0); 1000];
3047 /// let data: Option<[u8; 1000]> = data.transpose();
3048 /// assert_eq!(data, Some([0; 1000]));
3049 ///
3050 /// let data = [Some(0), None];
3051 /// let data: Option<[u8; 2]> = data.transpose();
3052 /// assert_eq!(data, None);
3053 /// ```
3054 #[inline]
3055 #[unstable(feature = "option_array_transpose", issue = "130828")]
3056 pub fn transpose(self) -> Option<[T; N]> {
3057 self.try_map(core::convert::identity)
3058 }
3059}