py_array2d_getitem method

py_ObjectRef py_array2d_getitem(
  1. py_Ref self,
  2. int x,
  3. int y
)

Implementation

py_ObjectRef py_array2d_getitem(
  py_Ref self,
  int x,
  int y,
) {
  return _py_array2d_getitem(
    self,
    x,
    y,
  );
}