MCPcopy Create free account
hub / github.com/pybind/pybind11 / call

Method call

include/pybind11/numpy.h:2104–2104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2102 static Return *mutable_data(Type &array) { return array.mutable_data(); }
2103
2104 static Return call(Func &f, Args &...args) { return f(args...); }
2105
2106 static void call(Return *out, size_t i, Func &f, Args &...args) { out[i] = f(args...); }
2107};

Callers

nothing calls this directly

Calls 1

fFunction · 0.85

Tested by

no test coverage detected