times

@JvmName(name = "timesNumberRational")
abstract operator fun Number.times(other: RationalFunctionType): RationalFunctionType(source)(source)
@JvmName(name = "timesPolynomialRational")
abstract operator fun Polynomial.times(other: RationalFunctionType): RationalFunctionType(source)(source)
@JvmName(name = "timesRationalNumber")
abstract operator fun RationalFunctionType.times(other: Number): RationalFunctionType(source)(source)
@JvmName(name = "timesRationalPolynomial")
abstract operator fun RationalFunctionType.times(other: Polynomial): RationalFunctionType(source)(source)