PyTime_FromNanosecondsObject method Null safety

int PyTime_FromNanosecondsObject (
  1. Pointer<Int64> t,
  2. Pointer<PyObject> obj
)

Implementation

int PyTime_FromNanosecondsObject(
  ffi.Pointer<ffi.Int64> t,
  ffi.Pointer<PyObject> obj,
) {
  return _PyTime_FromNanosecondsObject(
    t,
    obj,
  );
}