DEBSOURCES
Skip Quicknav
sources / cython / 3.1.6%2Bdfsg-2 / docs / examples / tutorial / string / arg_memview.py
12345
def process_byte_data(data: cython.uchar[:]): length = data.shape[0] first_byte = data[0] slice_view = data[1:-1] # ...