@wxn0brp/db-core
    Preparing search index...

    Type Alias ArrayOperators<T>

    Array Operators with nested support

    type ArrayOperators<T = any> = {
        $arrinc?: DeepPartial<T>;
        $arrincall?: DeepPartial<T>;
        $size?: NestedValue<T, number>;
    }

    Type Parameters

    • T = any
    Index

    Properties

    $arrinc?: DeepPartial<T>

    [1, 2, 3] includes 2

    $arrincall?: DeepPartial<T>

    [1, 2, 3] array includes all elements e.g. [1, 2]

    $size?: NestedValue<T, number>

    [1, 2, 3] has size 3