IndexedArrayResult#

class numpy::IndexedArrayResult#

numpy C++ class.

Example#

#include <numpy/np_ndarray.h>
using namespace numpy;

// Use IndexedArrayResult
IndexedArrayResult obj;
// ... operations ...

Constructors#

Signature

Location

Example

IndexedArrayResult(const NDArray<T>&array)

NP_ADVANCED_INDEXING.H:27

IndexedArrayResult(std::shared_ptr<IndexedArray<T>>indexed)

NP_ADVANCED_INDEXING.H:28

Operators#

Signature

Return Type

Location

Example

operator NDArray<T>()

NP_ADVANCED_INDEXING.H:31

Type Checking#

Signature

Return Type

Location

Example

bool is_view()

bool

NP_ADVANCED_INDEXING.H:45