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

Function PyDate_to_s

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

Source from the content-addressed store, hash-verified

92int64_t PyDate_to_days(PyDateTime_Date* pydate);
93
94ARROW_PYTHON_EXPORT
95inline int64_t PyDate_to_s(PyDateTime_Date* pydate) {
96 return PyDate_to_days(pydate) * 86400LL;
97}
98
99ARROW_PYTHON_EXPORT
100inline int64_t PyDate_to_ms(PyDateTime_Date* pydate) {

Callers 1

PyDateTime_to_sFunction · 0.85

Calls 1

PyDate_to_daysFunction · 0.85

Tested by

no test coverage detected