nodejs-polars
    Preparing search index...

    Interface Comparison<T>

    interface Comparison<T> {
        eq(other: any): T;
        equals(other: any): T;
        greaterThan(other: any): T;
        greaterThanEquals(other: any): T;
        gt(other: any): T;
        gtEq(other: any): T;
        lessThan(other: any): T;
        lessThanEquals(other: any): T;
        lt(other: any): T;
        ltEq(other: any): T;
        neq(other: any): T;
        notEquals(other: any): T;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Methods - Comparison