phdMesh Version of the Day
Protected Attributes | Friends
phdmesh::Array< Scalar, array_order, void, void, void, void, void, void, void, void > Class Template Reference

The not-preferred multi-dimensional Array interface with runtime user-defined dimension ordinates. Typically used when runtime-polymorphic arrays are passed to functions. More...

#include <Array.hpp>

List of all members.

Protected Attributes

value_typem_ptr
 Pointer to contiguous block of members.
unsigned m_rank
 Rank of the array.
size_type m_stride [8]
 Array of strides, smallest to largest.
tag_type m_tag [8]
 Array of singleton tags, aligned with strides.

Friends

class phdmesh::Array

Array Attributes

enum  { Natural = NaturalOrder == array_order }
 If the multidimension follows the natural ordering.
enum  { Reverse = FortranOrder == array_order }
 If the multidimension follows the reverse (Fortran) ordering.
enum  { Contiguous = true }
 If the member data storage is contiguous.
typedef Scalar value_type
 Type of member data.
typedef unsigned size_type
 Type for sizes.
typedef const ArrayDimTagtag_type
 Type of runtime dimension tags.
unsigned rank () const
 Rank of the array is the number of non-void dimension tags.
bool natural () const
 If the multidimension follows the natural ordering.
bool reverse () const
 If the multidimension follows the reverse (Fortran) ordering.
bool contiguous () const
 If the member data storage is contiguous.
tag_type tag (const unsigned ordinal) const
 Access the dimension tag-singleton for a given ordinate.
unsigned dimension (const unsigned ordinal) const
 Dimension of the given ordinate.
void dimensions (std::vector< unsigned > &n)
 Dimension of all ordinate.
size_type size () const
 Total number of data items.

Member data access operators

Array truncate (const unsigned i) const
 Generate a subarray view of the array with the slowest striding ordinate offset by i and removed.
value_typecontiguous_data () const
 Pointer to contiguous block of member data.
value_typeoperator[] (size_type i) const
 Access member via full ordering of members.
value_typeoperator() (const unsigned i1, const unsigned i2, const unsigned i3, const unsigned i4, const unsigned i5, const unsigned i6, const unsigned i7, const unsigned i8) const
 Access member via Rank 8 multi-index.
value_typeoperator() (const unsigned i1, const unsigned i2, const unsigned i3, const unsigned i4, const unsigned i5, const unsigned i6, const unsigned i7) const
value_typeoperator() (const unsigned i1, const unsigned i2, const unsigned i3, const unsigned i4, const unsigned i5, const unsigned i6) const
value_typeoperator() (const unsigned i1, const unsigned i2, const unsigned i3, const unsigned i4, const unsigned i5) const
value_typeoperator() (const unsigned i1, const unsigned i2, const unsigned i3, const unsigned i4) const
value_typeoperator() (const unsigned i1, const unsigned i2, const unsigned i3) const
value_typeoperator() (const unsigned i1, const unsigned i2) const
value_typeoperator() (const unsigned i1) const

Constructors and Assignment Operators

typedef ArrayReverse< Array >::type ReverseType
 Array ()
 Array (const Array &rhs)
Arrayoperator= (const Array &rhs)
 Array (const ReverseType &rhs)
 Copy constructor for reverse type.
Arrayoperator= (const ReverseType &rhs)
 Assignment operator for reverse type.
template<ArrayOrder order, class Tag1 , class Tag2 , class Tag3 , class Tag4 , class Tag5 , class Tag6 , class Tag7 , class Tag8 >
 Array (const Array< value_type, order, Tag1, Tag2, Tag3, Tag4, Tag5, Tag6, Tag7, Tag8 > &rhs)
 Copy constructor from an Array with compile-time defined rank and dimension tags.
 Array (value_type *ptr, const unsigned rank, const unsigned *const dims, const tag_type *const tags)

Detailed Description

template<typename Scalar, ArrayOrder array_order>
class phdmesh::Array< Scalar, array_order, void, void, void, void, void, void, void, void >

The not-preferred multi-dimensional Array interface with runtime user-defined dimension ordinates. Typically used when runtime-polymorphic arrays are passed to functions.

Parameters:
ScalarThe "plain old data" type of the array's member data.
array_orderAn ArrayOrder value that specifies whether to use Natural (a.k.a. C-language) or Fortran ordering for the multi-dimensions and multi-indices.

Definition at line 619 of file Array.hpp.


The documentation for this class was generated from the following file:
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator