PyUnicode_GetLength method Null safety

int PyUnicode_GetLength (
  1. Pointer<PyObject> unicode
)

Implementation

int PyUnicode_GetLength(
  ffi.Pointer<PyObject> unicode,
) {
  return _PyUnicode_GetLength(
    unicode,
  );
}