simianquant.mathbridge.RationalApi.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mathbridge_2.13 Show documentation
Show all versions of mathbridge_2.13 Show documentation
A bridge to shareable mathematical functions
The newest version!
package simianquant.mathbridge
import spire.std.AnyInstances
import spire.syntax.AllSyntax
/** Utility type to club all imports required to use [[spire.math.Rational]]
*
* @author Harshad Deo
* @since 0.2.0
*/
trait RationalApi extends AnyInstances with AllSyntax {
type Rational = spire.math.Rational
val Rational = spire.math.Rational
}
object RationalApi extends RationalApi