Remove a suffix of this view and return a view of the removed bytes.
Remove the specified last numBytes from this view if numBytes <= length() and remove length() bytes otherwise; return a view to the bytes that were removed. Note that this method will decrease the length of this view by min(numBytes, length()) bytes.
a view of the bytes that were removed
| Name | Description |
|---|---|
| numBytes | number of bytes to remove from the end of this view |