MCPcopy Create free account
hub / github.com/apache/arrow / PyDelta_to_ms

Function PyDelta_to_ms

python/pyarrow/src/arrow/python/datetime.h:153–157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151}
152
153ARROW_PYTHON_EXPORT
154inline int64_t PyDelta_to_ms(PyDateTime_Delta* pytimedelta) {
155 return (PyDelta_to_s(pytimedelta) * 1000LL +
156 PyDateTime_DELTA_GET_MICROSECONDS(pytimedelta) / 1000);
157}
158
159ARROW_PYTHON_EXPORT
160inline Result<int64_t> PyDelta_to_us(PyDateTime_Delta* pytimedelta) {

Callers 1

ConvertMethod · 0.85

Calls 1

PyDelta_to_sFunction · 0.85

Tested by

no test coverage detected