nodejs-polars
    Preparing search index...

    Type Alias CrossJoinOptions

    options for cross join

    type CrossJoinOptions = {
        coalesce?: boolean;
        how: "cross";
        suffix?: string;
        validate?: string;
    }
    Index

    Properties

    coalesce?: boolean

    Coalescing behavior (merging of join columns).

    how: "cross"

    Join strategy

    suffix?: string

    Suffix to append to columns with a duplicate name.

    validate?: string