Interface IIndexedValue<T>

Pair of {index, value} that passed predicate test of indexBy operator.

interface IIndexedValue<T> {
    index: number;
    value: T;
}

Type Parameters

  • T

Properties

Properties

index: number

Index of the value that passed the predicate test.

value: T

Value that corresponds to the index.