@aptos-labs/ts-sdk - v3.1.1
    Preparing search index...

    Interface Group<T>

    interface Group<T extends Group<T>> {
        add(other: T): T;
        double(): T;
        equals(other: T): boolean;
        multiply(scalar: bigint): T;
        negate(): T;
        subtract(other: T): T;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Methods

    • Parameters

      • other: T

      Returns T

    • Returns T

    • Parameters

      • other: T

      Returns boolean

    • Parameters

      • scalar: bigint

      Returns T

    • Returns T

    • Parameters

      • other: T

      Returns T