unsafe class ReadPartView<T>The ReadPartView type is a read-only view into a PartList<T> chunk.
ReadPartView is in the Prelude, meaning it is always available and does not need to be imported.
This type is subscriptable and iterable.
get(idx: int) -> TGets the element at index idx in this view.
readableSize() -> intReturns the number of elements that can be read from this view.
begin() -> intReturns the relative starting index of this view, where 0 is the first non-ghost element.
end() -> intReturns the relative ending index (exclusive) of this view, where 0 is the first non-ghost element.
srcBegin() -> intReturns the absolute starting index of this view within its source PartList.
srcEnd() -> intReturns the absolute ending index (exclusive) of this view within its source PartList.
partNum() -> intReturns this view's partition number.
src() -> PartList<T>Returns the source PartList that this view references.