Test whether a list-like structure is index-based.
List-like type
1.1.0
Returns true for arrays and readonly arrays.
true
type A = IsIndexedList< number[] >; // truetype B = IsIndexedList< ReadonlyArray< string > >; // truetype C = IsIndexedList< Set< boolean > >; // false Copy
type A = IsIndexedList< number[] >; // truetype B = IsIndexedList< ReadonlyArray< string > >; // truetype C = IsIndexedList< Set< boolean > >; // false
Test whether a list-like structure is index-based.