(view: StructPointer[Buffer], order: CharLike)
| 234 | # PyBuffer_IsContiguous |
| 235 | @staticmethod |
| 236 | def is_contiguous(view: StructPointer[Buffer], order: CharLike) -> int: |
| 237 | return api_binding_base( |
| 238 | API_FUNCS["PyBuffer_IsContiguous"], view, make_char(order) |
| 239 | ) |
| 240 | |
| 241 | # PyBuffer_Release |
| 242 | @staticmethod |
nothing calls this directly
no test coverage detected