tsqtsq - v1.2.0
    Preparing search index...

    Type Alias ArithmeticBinaryOpParams

    Parameters for arithmetic binary operators (+, -, *, /, %, ^) with optional vector matching.

    type ArithmeticBinaryOpParams = {
        groupLeft?: string[];
        groupRight?: string[];
        ignoring?: string[];
        left: string;
        on?: string[];
        right: string;
    }
    Index

    Properties

    groupLeft?: string[]

    group_left labels for many-to-one matching

    groupRight?: string[]

    group_right labels for one-to-many matching

    ignoring?: string[]

    match ignoring these labels; only applied when on is not specified

    left: string
    on?: string[]

    match on these labels; takes precedence over ignoring if both provided

    right: string