MultiplicativeCommutativeGroup

algebra.ring.MultiplicativeCommutativeGroup
See theMultiplicativeCommutativeGroup companion object

Attributes

Companion
object
Source
Multiplicative.scala
Graph
Supertypes
Known subtypes

Members list

Value members

Inherited methods

def div(x: A, y: A): A

Attributes

Inherited from:
MultiplicativeGroup
Source
Multiplicative.scala
def isOne(a: A)(implicit ev: Eq[A]): Boolean

Tests if a is one.

Tests if a is one.

Attributes

Inherited from:
MultiplicativeMonoid
Source
Multiplicative.scala
def one: A

Attributes

Inherited from:
MultiplicativeMonoid
Source
Multiplicative.scala
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.

Attributes

Inherited from:
MultiplicativeMonoid
Source
Multiplicative.scala
def reciprocal(x: A): A

Attributes

Inherited from:
MultiplicativeGroup
Source
Multiplicative.scala
def times(x: A, y: A): A

Attributes

Inherited from:
MultiplicativeSemigroup
Source
Multiplicative.scala
override def tryProduct(as: IterableOnce[A]): Option[A]

Given a sequence of as, combine them and return the total.

Given a sequence of as, combine them and return the total.

If the sequence is empty, returns None. Otherwise, returns Some(total).

Attributes

Definition Classes
Inherited from:
MultiplicativeMonoid
Source
Multiplicative.scala