A CF-compliant earth science data analysis library
FieldList.
__getslice__
Called to implement evaluation of f[i:j]
f.__getslice__(i, j) <==> f[i:j]
FieldList
Slice of the list from i to j.
Examples
>>> g = f[0:1] >>> g = f[1:-4] >>> g = f[:1] >>> g = f[1:]