nodejs-polars
    Preparing search index...

    Interface Arithmetic<T>

    Arithmetic operations

    interface Arithmetic<T> {
        add(other: any): T;
        div(other: any): T;
        divideBy(other: any): T;
        minus(other: any): T;
        modulo(other: any): T;
        mul(other: any): T;
        multiplyBy(other: any): T;
        plus(other: any): T;
        rem(other: any): T;
        sub(other: any): T;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Methods - Arithmetic