All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scalaz.BigIntegerW.scala Maven / Gradle / Ivy

The newest version!
package scalaz

import java.math.BigInteger

sealed trait BigIntegerW extends PimpedType[BigInteger] {
  import Scalaz._

  def ∏ = multiplication(value)
}

trait BigIntegers {
  implicit def BigIntegerTo(n: BigInteger): BigIntegerW = new BigIntegerW {
    val value = n
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy