grizzled.math.util.scala Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of grizzled-scala_2.13.0-M5 Show documentation
                Show all versions of grizzled-scala_2.13.0-M5 Show documentation
A general-purpose Scala utility library
                
             The newest version!
        
        package grizzled.math
/** Useful math-related utility functions.
  */
object util {
  /** A `max` function that will take any number of arguments for which an
    * `Ordering` is defined, returning the "largest" one, as defined by the
    * `Ordering`.
    *
    * @param arg   the first item
    * @param args  the remaining items for which to find the maximum
    * @tparam T    the argument type
    *
    * @return the maximum value
    */
  // reduce() is okay here, since the argument list cannot be empty.
  @SuppressWarnings(Array("org.wartremover.warts.TraversableOps"))
  def max[T: Ordering](arg: T, args: T*): T = {
    (arg +: args).reduce { (a: T, b: T) =>
      val ev = implicitly[Ordering[T]]
      ev.compare(a, b) match {
        case i if i < 0 => b
        case i if i > 0 => a
        case _          => a
      }
    }
  }
  /** A `max` function that will take any number of arguments for which an
    * `Ordering` is defined, returning the "largest" one, as defined by the
    * `Ordering`.
    *
    * @param arg   the first item
    * @param args  the remaining items for which to find the maximum
    * @tparam T    the argument type
    *
    * @return the maximum value
    */
  // reduce() is okay here, since the argument list cannot be empty.
  @SuppressWarnings(Array("org.wartremover.warts.TraversableOps"))
  def min[T: Ordering](arg: T, args: T*): T = {
    (arg +: args).reduce { (a: T, b: T) =>
      val ev = implicitly[Ordering[T]]
      ev.compare(a, b) match {
        case i if i < 0 => a
        case i if i > 0 => b
        case _          => a
      }
    }
  }
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy