MultiplicativeCommutativeGroup

trait MultiplicativeCommutativeGroup[@specialized(Int, Long, Float, Double) A] extends MultiplicativeGroup[A] with MultiplicativeCommutativeMonoid[A]
Companion
object

Value members

Inherited methods

def div(x: A, y: A): A
Inherited from
MultiplicativeGroup
def isOne(a: A)(ev: Eq[A]): Boolean

Tests if a is one.

Tests if a is one.

Inherited from
MultiplicativeMonoid
def one: A
Inherited from
MultiplicativeMonoid
override def pow(a: A, n: Int): A
def product(as: IterableOnce[A]): A

Given a sequence of as, compute the product.

Given a sequence of as, compute the product.

Inherited from
MultiplicativeMonoid
def reciprocal(x: A): A
Inherited from
MultiplicativeGroup
def times(x: A, y: A): A
override def tryProduct(as: IterableOnce[A]): Option[A]