PyLogo


UCBArray


Methods

f __add__(...) ...

x.__add__(y) <==> x+y

f __contains__(...) ...

x.__contains__(y) <==> y in x

f __delitem__(...) ...

x.__delitem__(y) <==> del x[y]

f __delslice__(...) ...

x.__delslice__(i, j) <==> del x[i:j]

Use of negative indices is not supported.

f __eq__(...) ...

x.__eq__(y) <==> x==y

f __ge__(...) ...

x.__ge__(y) <==> x>=y

f __getslice__(...) ...

x.__getslice__(i, j) <==> x[i:j]

Use of negative indices is not supported.

f __gt__(...) ...

x.__gt__(y) <==> x>y

f __iadd__(...) ...

x.__iadd__(y) <==> x+=y

f __imul__(...) ...

x.__imul__(y) <==> x*=y

f __iter__(...) ...

x.__iter__() <==> iter(x)

f __le__(...) ...

x.__le__(y) <==> x<=y

f __len__(...) ...

x.__len__() <==> len(x)

f __lt__(...) ...

x.__lt__(y) <==> x<y

f __mul__(...) ...

x.__mul__(n) <==> x*n

f __ne__(...) ...

x.__ne__(y) <==> x!=y

f __reversed__(...) ...

L.__reversed__() -- return a reverse iterator over the list

f __rmul__(...) ...

x.__rmul__(n) <==> n*x

f __setslice__(...) ...

x.__setslice__(i, j, y) <==> x[i:j]=y

Use of negative indices is not supported.

f __init__(v, origin=1) ...

f __getitem__(self, i) ...

f __setitem__(self, i, value) ...

See the source for more information.