mathue
    Preparing search index...

    Interface MultiplicativeMonoid<T>

    Represents a multiplicative monoid.

    Types implementing this interface support:

    • Associativity: (a * b) * c = a * (b * c)
    • Closure: a * b produces another value of type T
    interface MultiplicativeMonoid<T> {
        multiply(other: T): T;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Methods

    Methods