MCPcopy Create free account
hub / github.com/bytedance/bolt / aggregate

Function aggregate

bolt/python/Aggregate.cpp:87–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85}
86
87pybind11::object aggregate(pybind11::object& cls, pybind11::list columns) {
88 return bolt::python::pyTry<pybind11::object>(
89 [&]() -> pybind11::object { return cls.attr("aggregate")(*columns); },
90 [&]() {
91 return fmt::format(
92 "Failure during call to 'aggregate()' method of python class: '{}'.",
93 bolt::python::pyTypeStr(cls));
94 });
95}
96
97template <TypeKind TYPE>
98void setValueAt(

Callers 2

addRawInputMethod · 0.85

Calls 1

pyTypeStrFunction · 0.85

Tested by

no test coverage detected