aeruginous 2.2.2

The Aeruginous Open Source Development Toolbox.
Documentation
/*********************** GNU General Public License 3.0 ***********************\
|                                                                              |
|  Copyright (C) 2023 Kevin Matthes                                            |
|                                                                              |
|  This program is free software: you can redistribute it and/or modify        |
|  it under the terms of the GNU General Public License as published by        |
|  the Free Software Foundation, either version 3 of the License, or           |
|  (at your option) any later version.                                         |
|                                                                              |
|  This program is distributed in the hope that it will be useful,             |
|  but WITHOUT ANY WARRANTY; without even the implied warranty of              |
|  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               |
|  GNU General Public License for more details.                                |
|                                                                              |
|  You should have received a copy of the GNU General Public License           |
|  along with this program.  If not, see <https://www.gnu.org/licenses/>.      |
|                                                                              |
\******************************************************************************/

/// Prefer a certain value to a fallback.
pub trait Prefer {
  /// Prefer a certain value to a fallback.
  ///
  /// The instance this method is called on will be used as a fallback in case
  /// that the given value does not fulfill certain criteria to be considered
  /// preferable.
  ///
  /// # Examples
  ///
  /// ```rust
  /// use aeruginous::Prefer;
  ///
  /// assert_eq!(Some(23).prefer(Some(42)), Some(42));
  /// assert_eq!(None.prefer(Some(42)), Some(42));
  /// assert_eq!(Some(23).prefer(None), Some(23));
  /// assert_eq!(None::<i32>.prefer(None), None);
  /// ```
  #[must_use]
  fn prefer(&self, other: Self) -> Self;
}

impl<T: Clone> Prefer for Option<T> {
  fn prefer(&self, other: Self) -> Self {
    other
      .as_ref()
      .map_or_else(|| (*self).clone(), |value| Some(value.clone()))
  }
}

/******************************************************************************/