BroadcastApplicator =================== .. cpp:class:: numpy::BroadcastApplicator numpy C++ class. Example ------- .. code-block:: cpp #include using namespace numpy; // Use BroadcastApplicator BroadcastApplicator obj; // ... operations ... Constructors ------------ .. list-table:: :widths: 55 25 20 :header-rows: 1 * - Signature - Location - Example * - ``BroadcastApplicator(Func &&func, Arrays &...arrays)`` - NP_VECTORIZE_BROADCAST.H:295 - Indexing / Selection -------------------- .. list-table:: :widths: 40 20 15 25 :header-rows: 1 * - Signature - Return Type - Location - Example * - ``void getShapes(std::vector>&shapes, std::index_sequence)`` - void - NP_VECTORIZE_BROADCAST.H:326 - Other Methods ------------- .. list-table:: :widths: 40 20 15 25 :header-rows: 1 * - Signature - Return Type - Location - Example * - ``auto applyFuncToElements(const std::tuple&elements, std::index_sequence)`` - auto - NP_VECTORIZE_BROADCAST.H:336 - * - ``auto applyToBroadcast()`` - auto - NP_VECTORIZE_BROADCAST.H:301 - * - ``auto makeBroadcastIteratorImpl(std::index_sequence)`` - auto - NP_VECTORIZE_BROADCAST.H:331 -