VectorizedFunction ================== .. cpp:class:: numpy::VectorizedFunction numpy C++ class. Example ------- .. code-block:: cpp #include using namespace numpy; // Use VectorizedFunction VectorizedFunction obj; // ... operations ... Constructors ------------ .. list-table:: :widths: 55 25 20 :header-rows: 1 * - Signature - Location - Example * - ``VectorizedFunction(Func &&func)`` - NP_VECTORIZE_BROADCAST.H:415 - Operators --------- .. list-table:: :widths: 40 25 15 20 :header-rows: 1 * - Signature - Return Type - Location - Example * - ``auto operator()(ArrayArgs &&...args)`` - auto - NP_VECTORIZE_BROADCAST.H:420 -