Regina 7.0 Calculation Engine
Public Types | Public Member Functions | Static Public Member Functions | Friends | List of all members
regina::python::GlobalArray2D< T, rvp > Class Template Reference

A template class that references a constant two-dimensional C++ array. More...

#include <python/globalarray.h>

Public Types

using Row = GlobalArray< T, rvp >
 A wrapper class for each row of this array. More...
 

Public Member Functions

template<size_t nCols>
 GlobalArray2D (const T data[][nCols], size_t nRows)
 Constructs a new wrapper object for the given 2-dimensional C++ array. More...
 
 GlobalArray2D (const T data[], size_t nRows, size_t nCols)
 Constructs a new 2-dimensional wrapper object for the given 1-dimensional C++ array. More...
 
 GlobalArray2D (const GlobalArray2D< T, rvp > &cloneMe)
 Constructs a new wrapper object that wraps the same C++ array as the given wrapper object. More...
 
 ~GlobalArray2D ()
 Class destructor. More...
 
size_t rows () const
 Return the number of rows in this array. More...
 
size_t cols () const
 Return the number of columns in this array. More...
 
const RowgetItem (size_t index) const
 Returns the requested row of the array. More...
 
std::ostream & writeText (std::ostream &out) const
 Writes a string representation of this array, including all of its elements, to the given output stream. More...
 

Static Public Member Functions

static void wrapClass (pybind11::module_ &m, const char *className)
 Constructs a Python wrapper for this class. More...
 

Friends

class GlobalArray3D< T, rvp >
 

Detailed Description

template<typename T, pybind11::return_value_policy rvp = pybind11::return_value_policy::copy>
class regina::python::GlobalArray2D< T, rvp >

A template class that references a constant two-dimensional C++ array.

An object of this class can be passed through to Python to allow the user access to the underlying C++ array. For the Python user, the usual list operator [] can be used to access the elements of the array. Range checking is performed on any indices that are passed.

The rvp template argument specifies the return value policy for element lookup.

For each different set of template parameters, the corresponding GlobalArray2D class must be wrapped in Python before the first object of this class is wrapped. This wrapping is performed by calling wrapClass().

Note that elements of this array can only be inspected, not modified.

Precondition
The output operator << is defined for type T.

Member Typedef Documentation

◆ Row

template<typename T , pybind11::return_value_policy rvp = pybind11::return_value_policy::copy>
using regina::python::GlobalArray2D< T, rvp >::Row = GlobalArray<T, rvp>

A wrapper class for each row of this array.

Constructor & Destructor Documentation

◆ GlobalArray2D() [1/3]

template<typename T , pybind11::return_value_policy rvp = pybind11::return_value_policy::copy>
template<size_t nCols>
regina::python::GlobalArray2D< T, rvp >::GlobalArray2D ( const T  data[][nCols],
size_t  nRows 
)
inline

Constructs a new wrapper object for the given 2-dimensional C++ array.

Precondition
This class has already been wrapped in Python by calling wrapClass().
The number of rows is strictly positive.
Parameters
datathe constant 2-dimensional C++ array that is to be wrapped.
nRowsthe number of rows in this C++ array, i.e., the first array dimension.
Template Parameters
nColsthe number of columns in this C++ array, i.e., the second array dimension. This must be a compile-time constant.

◆ GlobalArray2D() [2/3]

template<typename T , pybind11::return_value_policy rvp = pybind11::return_value_policy::copy>
regina::python::GlobalArray2D< T, rvp >::GlobalArray2D ( const T  data[],
size_t  nRows,
size_t  nCols 
)
inline

Constructs a new 2-dimensional wrapper object for the given 1-dimensional C++ array.

If the Python array is to have r rows and columns, the Python element array[i][j] will correspond to the C++ element array[(i * c) + j].

Precondition
This class has already been wrapped in Python by calling wrapClass().
The numbers of rows and columns are both strictly positive.
Parameters
datathe constant 1-dimensional C++ array that is to be wrapped.
nRowsthe number of rows in the corresponding 2-dimensional array, i.e., the first array dimension.
nColsthe number of columns in the corresponding 2-dimensional array, i.e., the second array dimension.

◆ GlobalArray2D() [3/3]

template<typename T , pybind11::return_value_policy rvp = pybind11::return_value_policy::copy>
regina::python::GlobalArray2D< T, rvp >::GlobalArray2D ( const GlobalArray2D< T, rvp > &  cloneMe)
inline

Constructs a new wrapper object that wraps the same C++ array as the given wrapper object.

Note that the same underlying C++ array is referenced, i.e., the C++ array itself is not cloned.

Parameters
cloneMethe wrapper object to clone.

◆ ~GlobalArray2D()

template<typename T , pybind11::return_value_policy rvp = pybind11::return_value_policy::copy>
regina::python::GlobalArray2D< T, rvp >::~GlobalArray2D ( )
inline

Class destructor.

All of the internal row wrappers are destroyed.

Member Function Documentation

◆ cols()

template<typename T , pybind11::return_value_policy rvp = pybind11::return_value_policy::copy>
size_t regina::python::GlobalArray2D< T, rvp >::cols ( ) const
inline

Return the number of columns in this array.

Returns
the number of columns.

◆ getItem()

template<typename T , pybind11::return_value_policy rvp = pybind11::return_value_policy::copy>
const Row & regina::python::GlobalArray2D< T, rvp >::getItem ( size_t  index) const
inline

Returns the requested row of the array.

If the row index is out of range, a Python error will be thrown.

Parameters
indexthe index of the requested row.
Returns
the row at the given index.

◆ rows()

template<typename T , pybind11::return_value_policy rvp = pybind11::return_value_policy::copy>
size_t regina::python::GlobalArray2D< T, rvp >::rows ( ) const
inline

Return the number of rows in this array.

Returns
the number of rows.

◆ wrapClass()

template<typename T , pybind11::return_value_policy rvp = pybind11::return_value_policy::copy>
static void regina::python::GlobalArray2D< T, rvp >::wrapClass ( pybind11::module_ &  m,
const char *  className 
)
inlinestatic

Constructs a Python wrapper for this class.

This routine must be called for each set of template parameters before the first object of this class is wrapped.

Parameters
mthe Python module in which these wrappers should be installed.
classNamethe name that will be assigned to this class in Python.

◆ writeText()

template<typename T , pybind11::return_value_policy rvp = pybind11::return_value_policy::copy>
std::ostream & regina::python::GlobalArray2D< T, rvp >::writeText ( std::ostream &  out) const
inline

Writes a string representation of this array, including all of its elements, to the given output stream.

Parameters
outthe output stream to which to write.
Returns
a reference to out.

The documentation for this class was generated from the following file:

Copyright © 1999-2021, The Regina development team
This software is released under the GNU General Public License, with some additional permissions; see the source code for details.
For further information, or to submit a bug or other problem, please contact Ben Burton (bab@maths.uq.edu.au).