PyUnicode_Find method

int PyUnicode_Find(
  1. Pointer<PyObject> str,
  2. Pointer<PyObject> substr,
  3. int start,
  4. int end,
  5. int direction,
)

Implementation

int PyUnicode_Find(
  ffi.Pointer<PyObject> str,
  ffi.Pointer<PyObject> substr,
  int start,
  int end,
  int direction,
) {
  return _PyUnicode_Find(
    str,
    substr,
    start,
    end,
    direction,
  );
}