py_list_insert method

void py_list_insert(
  1. py_Ref self,
  2. int i,
  3. py_Ref val
)

Implementation

void py_list_insert(
  py_Ref self,
  int i,
  py_Ref val,
) {
  return _py_list_insert(
    self,
    i,
    val,
  );
}