Interface: MinimalList

MinimalList

Minimal definition of an iterable collection. Must define a number length property representing the number of elements in the collection, and be indexible by integers (0...length - 1) with each index representing a value in the collection. E.g. both Array and NodeList implement this interface.