ee.List

Extended methods for the ee.List class:

__add__(self, other)

Concatenates the contents of a list onto another list.

__contains__(self, key)

Returns True if the item is in the list.

__getitem__(self, key)

Gets the item of the list according to the specified key.

__len__(self)

Returns the length of the list.

__mul__(self, other)

Returns a new list containing a list repeated n times.

__radd__(self, other)

Concatenates the contents of a list onto another list.

__rmul__(self, other)

Returns a new list containing a list repeated n times.