Rosetta  2019.07
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Types | Private Member Functions | Private Attributes | Friends | List of all members
ObjexxFCL::FArray2D< typename > Class Template Reference

FArray2D: Fortran-Compatible 2D Array. More...

#include <FArray2D.hh>

Inheritance diagram for ObjexxFCL::FArray2D< typename >:
Inheritance graph
[legend]

Public Types

typedef Super::Base Base
 
typedef Base::Section Section
 
typedef Super::IR SIR
 
typedef DynamicIndexRange IR
 
typedef Base::value_type value_type
 
typedef Base::reference reference
 
typedef Base::const_reference const_reference
 
typedef Base::pointer pointer
 
typedef Base::const_pointer const_pointer
 
typedef Base::size_type size_type
 
typedef Base::difference_type difference_type
 
typedef Base::Value Value
 
typedef Base::Reference Reference
 
typedef Base::ConstReference ConstReference
 
typedef Base::Pointer Pointer
 
typedef Base::ConstPointer ConstPointer
 
typedef Base::Size Size
 
typedef Base::Difference Difference
 
typedef FArrayInitializer< T,
ObjexxFCL::FArray2D
Initializer
 
typedef Initializer::function_type InitializerFunction
 
- Public Types inherited from ObjexxFCL::FArray2< T >
typedef Super::Base Base
 
typedef Base::Section Section
 
typedef Base::IR IR
 
typedef Base::value_type value_type
 
typedef Base::reference reference
 
typedef Base::const_reference const_reference
 
typedef Base::pointer pointer
 
typedef Base::const_pointer const_pointer
 
typedef Base::size_type size_type
 
typedef Base::difference_type difference_type
 
typedef Base::Value Value
 
typedef Base::Reference Reference
 
typedef Base::ConstReference ConstReference
 
typedef Base::Pointer Pointer
 
typedef Base::ConstPointer ConstPointer
 
typedef Base::Size Size
 
typedef Base::Difference Difference
 
- Public Types inherited from ObjexxFCL::FArray< T >
typedef FArray< TBase
 
typedef FArrayTraits< TTraits
 
typedef FArraySection< TSection
 
typedef IndexRange IR
 
typedef T value_type
 
typedef Treference
 
typedef T const & const_reference
 
typedef Tpointer
 
typedef T const * const_pointer
 
typedef std::size_t size_type
 
typedef std::ptrdiff_t difference_type
 
typedef T Value
 
typedef TReference
 
typedef T const & ConstReference
 
typedef TPointer
 
typedef T const * ConstPointer
 
typedef std::size_t Size
 
typedef std::ptrdiff_t Difference
 
- Public Types inherited from ObjexxFCL::ObserverMulti
typedef SetWrapper< Observer * > Observers
 

Public Member Functions

 FArray2D ()
 Default Constructor. More...
 
 FArray2D (FArray2D const &a)
 Copy Constructor. More...
 
template<typename U >
 FArray2D (FArray2D< U > const &a)
 Copy Constructor Template. More...
 
template<typename U >
 FArray2D (FArray2< U > const &a)
 Super Constructor Template. More...
 
 FArray2D (IR const &I1_a, IR const &I2_a)
 IndexRange Constructor. More...
 
 FArray2D (IR const &I1_a, IR const &I2_a, T const &t)
 IndexRange + Initializer Value Constructor. More...
 
 FArray2D (IR const &I1_a, IR const &I2_a, InitializerFunction const &function_a)
 IndexRange + Initializer Function Constructor. More...
 
template<typename U >
 FArray2D (FArray2< U > const &a, IR const &I1_a, IR const &I2_a)
 Super + IndexRange Constructor Template. More...
 
template<typename U >
 FArray2D (FArray2< U > const &a, IR const &I1_a, IR const &I2_a, T const &t)
 Super + IndexRange + Fill Value Constructor Template. More...
 
virtual ~FArray2D ()
 Destructor. More...
 
FArray2Doperator= (FArray2D const &a)
 Copy Assignment. More...
 
FArray2Doperator= (Super const &a)
 Super Assignment. More...
 
template<typename U >
FArray2Doperator= (FArray2< U > const &a)
 Super Assignment Template. More...
 
template<typename U >
FArray2Doperator+= (FArray2< U > const &a)
 += Array Template More...
 
template<typename U >
FArray2Doperator*= (FArray2< U > const &a)
 *= Array Template More...
 
template<typename U >
FArray2Doperator-= (FArray2< U > const &a)
 -= Array Template More...
 
FArray2Doperator= (T const &t)
 = Value More...
 
FArray2Doperator+= (T const &t)
 += Value More...
 
FArray2Doperator-= (T const &t)
 -= Value More...
 
FArray2Doperator*= (T const &t)
 *= Value More...
 
FArray2Doperator/= (T const &t)
 /= Value More...
 
T const & operator() (int const i1, int const i2) const
 array( i1, i2 ) const More...
 
Toperator() (int const i1, int const i2)
 array( i1, i2 ) More...
 
Section const a (int const i1, int const i2) const
 Section Starting at array( i1, i2 ) More...
 
size_type index (int const i1, int const i2) const
 Linear Index. More...
 
T const & operator[] (size_type const i) const
 array[ i ] const: Linear Subscript More...
 
Toperator[] (size_type const i)
 array[ i ]: Linear Subscript More...
 
bool dimensions_initialized () const
 Dimensions Initialized? More...
 
bool contains (int const i1, int const i2) const
 Contains Indexed Element? More...
 
bool initializer_active () const
 Initializer Active? More...
 
IR const & I1 () const
 IndexRange of Dimension 1. More...
 
int l1 () const
 Lower Index of Dimension 1. More...
 
int u1 () const
 Upper Index of Dimension 1. More...
 
IR const & I2 () const
 IndexRange of Dimension 2. More...
 
int l2 () const
 Lower Index of Dimension 2. More...
 
int u2 () const
 Upper Index of Dimension 2. More...
 
size_type size2 () const
 Size of Dimension 2. More...
 
FArray2Dclear ()
 Clear. More...
 
FArray2Ddimension (IR const &I1_a, IR const &I2_a)
 Dimension by IndexRanges. More...
 
FArray2Ddimension (IR const &I1_a, IR const &I2_a, T const &t)
 Dimension by IndexRanges + Initializer Value. More...
 
FArray2Ddimension (IR const &I1_a, IR const &I2_a, InitializerFunction const &function_a)
 Dimension by IndexRanges + Initializer Function. More...
 
template<typename U >
FArray2Ddimension (FArray2< U > const &a)
 Dimension by Array Template. More...
 
template<typename U >
FArray2Ddimension (FArray2< U > const &a, T const &t)
 Dimension by Array + Initializer Value Template. More...
 
template<typename U >
FArray2Ddimension (FArray2< U > const &a, InitializerFunction const &function_a)
 Dimension by Array + Initializer Function Template. More...
 
FArray2Dredimension (IR const &I1_a, IR const &I2_a)
 Data-Preserving Redimension by IndexRanges. More...
 
FArray2Dredimension (IR const &I1_a, IR const &I2_a, T const &t)
 Data-Preserving Redimension by IndexRanges + Fill Value. More...
 
template<typename U >
FArray2Dredimension (FArray2< U > const &a)
 Data-Preserving Redimension by Array Template. More...
 
template<typename U >
FArray2Dredimension (FArray2< U > const &a, T const &t)
 Data-Preserving Redimension by Array + Fill Value Template. More...
 
FArray2Dinitializer (T const &t)
 Set Initializer Value. More...
 
FArray2Dinitializer (InitializerFunction const &function_a)
 Set Initializer Function. More...
 
FArray2Dinitializer_clear ()
 Clear Initializer. More...
 
FArray2Dinitialize ()
 Initialize. More...
 
FArray2Dswap (FArray2D &v)
 Swap. More...
 
void update ()
 Update. More...
 
void destructed (Subject const &)
 Update for Destruction of a Subject. More...
 
- Public Member Functions inherited from ObjexxFCL::FArray2< T >
virtual ~FArray2 ()
 Destructor. More...
 
FArray2operator= (FArray2 const &a)
 Copy Assignment. More...
 
FArray2operator= (FArray2< U > const &a)
 Copy Assignment Template. More...
 
FArray2operator= (T const &t)
 = Value More...
 
FArray2operator+= (FArray2< U > const &a)
 += Array Template More...
 
FArray2operator+= (T const &t)
 += Value More...
 
FArray2operator-= (FArray2< U > const &a)
 -= Array Template More...
 
FArray2operator-= (T const &t)
 -= Value More...
 
FArray2operator*= (FArray2< U > const &a)
 *= Array Template More...
 
FArray2operator*= (T const &t)
 *= Value More...
 
FArray2operator/= (T const &t)
 /= Value More...
 
T const & operator() (int const i1, int const i2) const
 array( i1, i2 ) const More...
 
Toperator() (int const i1, int const i2)
 array( i1, i2 ) More...
 
Section const a (int const i1, int const i2) const
 Const Section Starting at array( i1, i2 ) More...
 
Section a (int const i1, int const i2)
 Section Starting at array( i1, i2 ) More...
 
size_type index (int const i1, int const i2) const
 Linear Index. More...
 
bool equal_dimension (FArray2< U > const &a) const
 Equal Dimension? More...
 
bool is_identity () const
 Is Identity? More...
 
bool square () const
 Square? More...
 
bool symmetric () const
 Symmetric? More...
 
size_type size1 () const
 Size of Dimension 1. More...
 
FArray2clear ()
 Clear. More...
 
FArray2to_default ()
 Assign Default Value to all Elements. More...
 
FArray2to_identity ()
 Set to the Identity Matrix. More...
 
FArray2to_diag (T const &d)
 Set to Diagonal Matrix with Uniform Value. More...
 
FArray2set_diagonal (T const &d)
 Set Diagonal of Matrix to a Uniform Value. More...
 
FArray2transpose ()
 Transpose. More...
 
FArray2right_multiply_by (FArray2< U > const &a)
 Right Multiply By Array. More...
 
FArray2right_multiply_by_transpose (FArray2< U > const &a)
 Right Multiply By Transpose of Array. More...
 
- Public Member Functions inherited from ObjexxFCL::FArray< T >
virtual ~FArray ()
 Destructor. More...
 
FArrayoperator= (T const &t)
 = Value More...
 
FArrayoperator+= (T const &t)
 += Value More...
 
FArrayoperator-= (T const &t)
 -= Value More...
 
FArrayoperator*= (T const &t)
 *= Value More...
 
FArrayoperator/= (T const &t)
 /= Value More...
 
T const & operator[] (size_type const i) const
 array[ i ] const: Linear Subscript More...
 
Toperator[] (size_type const i)
 array[ i ]: Linear Subscript More...
 
bool active () const
 Active? More...
 
bool array_size_bounded () const
 Array Size Bounded? More...
 
bool array_size_unbounded () const
 Array Size Unbounded? More...
 
bool size_bounded () const
 Active Array Size Bounded? More...
 
bool size_unbounded () const
 Active Array Size Unbounded? More...
 
bool owner () const
 Owner? More...
 
bool proxy () const
 Proxy? More...
 
bool is_default () const
 All Elements Default Valued? More...
 
bool is_zero () const
 All Elements Zero? More...
 
bool is_uniform () const
 Uniform Valued? More...
 
bool is_uniform (T const &t) const
 Uniform Valued with Specified Value? More...
 
size_type array_size () const
 Array Size. More...
 
size_type size () const
 Active Array Size. More...
 
void zero ()
 Assign Zero to all Elements. More...
 
void to_zero ()
 Assign Zero to all Elements. More...
 
- Public Member Functions inherited from ObjexxFCL::ObserverMulti
virtual ~ObserverMulti ()
 Destructor. More...
 
void insert_observer (Observer &observer) const
 Insert an Observer. More...
 
void remove_observer (Observer &observer) const
 Remove an Observer. More...
 
bool has_observer () const
 Has At Least One Observer? More...
 
Observers const * observers_p () const
 Observers Pointer. More...
 
Observers const & observers () const
 Observers. More...
 
void notify_destructed () const
 Notify Observers That This Subject is Being Destructed. More...
 
- Public Member Functions inherited from ObjexxFCL::Observer
virtual ~Observer ()
 Destructor. More...
 
void notify () const
 Notify Observers That This Subject Has Changed. More...
 
bool acyclic (Observer &) const
 Acyclic After Adding an Observer of This Subject? More...
 

Static Public Member Functions

static FArray2D diag (IR const &I_a, T const &d)
 Diagonal Matrix Named Constructor. More...
 
static FArray2D identity (IR const &I_a)
 Identity Matrix Named Constructor. More...
 

Protected Member Functions

void dimension_assign (SIR const &I1_a, SIR const &I2_a)
 Dimension by IndexRanges. More...
 
- Protected Member Functions inherited from ObjexxFCL::FArray2< T >
 FArray2 ()
 Default Constructor. More...
 
 FArray2 (FArray2 const &a)
 Copy Constructor. More...
 
 FArray2 (FArray2< U > const &a)
 Copy Constructor Template. More...
 
 FArray2 (size_type const size_a)
 Size Constructor. More...
 
 FArray2 (size_type const size_a, InitializerSentinel const &initialized)
 Size + InitializerSentinel Constructor. More...
 
 FArray2 (ProxySentinel const &proxy)
 Default Proxy Constructor. More...
 
 FArray2 (FArray2 const &a, ProxySentinel const &proxy)
 Copy Proxy Constructor. More...
 
 FArray2 (FArray2 &a, ProxySentinel const &proxy)
 Non-Const Copy Proxy Constructor. More...
 
 FArray2 (Base const &a, ProxySentinel const &proxy)
 Base Proxy Constructor. More...
 
 FArray2 (Base &a, ProxySentinel const &proxy)
 Non-Const Base Proxy Constructor. More...
 
 FArray2 (Section const &s, ProxySentinel const &proxy)
 Section Proxy Constructor. More...
 
 FArray2 (Section &s, ProxySentinel const &proxy)
 Non-Const Section Proxy Constructor. More...
 
 FArray2 (T const &t, ProxySentinel const &proxy)
 Value Proxy Constructor. More...
 
 FArray2 (T &t, ProxySentinel const &proxy)
 Non-Const Value Proxy Constructor. More...
 
void swap2DB (FArray2 &v)
 Swap. More...
 
- Protected Member Functions inherited from ObjexxFCL::FArray< T >
 FArray ()
 Default Constructor. More...
 
 FArray (FArray const &a)
 Copy Constructor. More...
 
 FArray (FArray< U > const &a)
 Copy Constructor Template. More...
 
 FArray (size_type const size_a)
 Size Constructor. More...
 
 FArray (size_type const size_a, InitializerSentinel const &)
 Size + InitializerSentinel Constructor. More...
 
 FArray (ProxySentinel const &)
 Default Proxy Constructor. More...
 
 FArray (FArray const &a, ProxySentinel const &)
 Array Proxy Constructor. More...
 
 FArray (FArray &a, ProxySentinel const &)
 Non-Const Array Proxy Constructor. More...
 
 FArray (Section const &s, ProxySentinel const &)
 Section Proxy Constructor. More...
 
 FArray (Section &s, ProxySentinel const &)
 Non-Const Section Proxy Constructor. More...
 
 FArray (T const &t, ProxySentinel const &)
 Value Proxy Constructor. More...
 
 FArray (T &t, ProxySentinel const &)
 Non-Const Value Proxy Constructor. More...
 
FArrayoperator= (FArray const &a)
 Copy Assignment. More...
 
void operator= (FArray< U > const &a)
 Copy Assignment Template. More...
 
void operator+= (FArray< U > const &a)
 += Array Template More...
 
void operator-= (FArray< U > const &a)
 -= Array Template More...
 
void shift_set (int const shift_a)
 Shift Setup. More...
 
void size_set (size_type const size_a)
 Active Array Size Setup. More...
 
FArrayresize (size_type const size_a)
 Resize a Real Array. More...
 
void attach (FArray const &a)
 Attach Proxy/Argument Array to Const Array of Same Rank. More...
 
void attach (FArray &a)
 Attach Proxy/Argument Array to Array of Same Rank. More...
 
void attach (FArray const &a, int const shift_a)
 Attach Proxy/Argument Array to Const Array. More...
 
void attach (FArray &a, int const shift_a)
 Attach Proxy/Argument Array to Array. More...
 
void attach (Section const &s, int const shift_a)
 Attach Proxy/Argument Array to Const Section. More...
 
void attach (Section &s, int const shift_a)
 Attach Proxy/Argument Array to Section. More...
 
void attach (T const &t, int const shift_a)
 Attach Proxy/Argument Array to Const Value. More...
 
void attach (T &t, int const shift_a)
 Attach Proxy/Argument Array to Value. More...
 
void detach ()
 Detach Proxy/Argument Array. More...
 
void update_to (FArray const &a)
 Update Proxy Array Attachment to Const Array. More...
 
void update_to (FArray &a)
 Update Proxy Array Attachment to Array. More...
 
void swapB (FArray &v)
 Swap. More...
 
- Protected Member Functions inherited from ObjexxFCL::ObserverMulti
 ObserverMulti ()
 Default Constructor. More...
 
 ObserverMulti (ObserverMulti const &)
 Copy Constructor. More...
 
ObserverMultioperator= (ObserverMulti const &)
 Copy Assignment. More...
 
- Protected Member Functions inherited from ObjexxFCL::Observer
 Observer ()
 Default Constructor. More...
 
 Observer (Observer const &)
 Copy Constructor. More...
 
Observeroperator= (Observer const &)
 Copy Assignment. More...
 

Private Types

typedef FArray2< TSuper
 
typedef Super::real_FArray real_FArray
 
typedef Super::proxy_FArray proxy_FArray
 
typedef Super::arg_FArray arg_FArray
 
typedef
internal::InitializerSentinel 
InitializerSentinel
 

Private Member Functions

void setup_real ()
 Setup for IndexRange Constructor. More...
 
void dimension_real ()
 Dimension by Current IndexRanges. More...
 
void insert_as_observer ()
 Insert as Observer of the IndexRanges. More...
 
void remove_as_observer ()
 Remove as Observer of the IndexRanges. More...
 

Private Attributes

IR I1_
 Dimension 1 index range. More...
 
IR I2_
 Dimension 2 index range. More...
 
Initializer initializer_
 Array initializer. More...
 

Friends

template<typename >
class FArray2D
 
class FArray2P< T >
 
class FArray2A< T >
 
template<typename U >
void swap (FArray2D< U > &a, FArray2D< U > &b)
 Swap. More...
 
FArray2D operator- (Super const &a)
 -Array More...
 
FArray2D operator+ (Super const &a, Super const &b)
 Array + Array. More...
 
FArray2D operator- (Super const &a, Super const &b)
 Array - Array. More...
 
FArray2D operator+ (Super const &a, T const &t)
 Array + Value. More...
 
FArray2D operator+ (T const &t, Super const &a)
 Value + Array. More...
 
FArray2D operator- (Super const &a, T const &t)
 Array - Value. More...
 
FArray2D operator- (T const &t, Super const &a)
 Value - Array. More...
 
FArray2D operator* (Super const &a, T const &t)
 Array * Value. More...
 
FArray2D operator* (T const &t, Super const &a)
 Value * Array. More...
 
FArray2D operator/ (Super const &a, T const &t)
 Array / Value. More...
 
template<typename U >
FArray2D< U > transposed (FArray2< U > const &a)
 Transposed. More...
 

Additional Inherited Members

- Static Public Attributes inherited from ObjexxFCL::FArray< T >
static size_type const npos
 Unbounded "size". More...
 
static size_type const max_size
 Max array size. More...
 
- Protected Types inherited from ObjexxFCL::FArray2< T >
typedef
internal::InitializerSentinel 
InitializerSentinel
 
typedef internal::ProxySentinel ProxySentinel
 
- Protected Types inherited from ObjexxFCL::FArray< T >
typedef
internal::InitializerSentinel 
InitializerSentinel
 
typedef internal::ProxySentinel ProxySentinel
 
- Static Protected Member Functions inherited from ObjexxFCL::FArray< T >
static size_type size_of (size_type const s1)
 Array Size Product of Specified Bounded Dimensional Sizes. More...
 
static size_type size_of (size_type const s1, size_type const s2)
 Array Size Product of Specified Bounded Dimensional Sizes. More...
 
static size_type size_of (size_type const s1, size_type const s2, size_type const s3)
 Array Size Product of Specified Bounded Dimensional Sizes. More...
 
static size_type size_of (size_type const s1, size_type const s2, size_type const s3, size_type const s4)
 Array Size Product of Specified Bounded Dimensional Sizes. More...
 
static size_type size_of (size_type const s1, size_type const s2, size_type const s3, size_type const s4, size_type const s5)
 Array Size Product of Specified Bounded Dimensional Sizes. More...
 
static size_type size_of (size_type const s1, size_type const s2, size_type const s3, size_type const s4, size_type const s5, size_type const s6)
 Array Size Product of Specified Bounded Dimensional Sizes. More...
 
static size_type size_of (IR const &I1)
 Array Size Product of Specified Bounded IndexRanges. More...
 
static size_type size_of (IR const &I1, IR const &I2)
 Array Size Product of Specified Bounded IndexRanges. More...
 
static size_type size_of (IR const &I1, IR const &I2, IR const &I3)
 Array Size Product of Specified Bounded IndexRanges. More...
 
static size_type size_of (IR const &I1, IR const &I2, IR const &I3, IR const &I4)
 Array Size Product of Specified Bounded IndexRanges. More...
 
static size_type size_of (IR const &I1, IR const &I2, IR const &I3, IR const &I4, IR const &I5)
 Array Size Product of Specified Bounded IndexRanges. More...
 
static size_type size_of (IR const &I1, IR const &I2, IR const &I3, IR const &I4, IR const &I5, IR const &I6)
 Array Size Product of Specified Bounded IndexRanges. More...
 
- Protected Attributes inherited from ObjexxFCL::FArray2< T >
size_type s1_
 Dimension 1 size. More...
 
- Protected Attributes inherited from ObjexxFCL::FArray< T >
size_type array_size_
 Size of data array. More...
 
Tarray_
 Pointer to data array. More...
 
size_type size_
 Size of active array. More...
 
bool const owner_
 Owner of data array? More...
 
int shift_
 Array shift. More...
 
Tsarray_
 Shifted pointer to data array. More...
 

Detailed Description

template<typename>
class ObjexxFCL::FArray2D< typename >

FArray2D: Fortran-Compatible 2D Array.

Member Typedef Documentation

template<typename >
typedef Super::arg_FArray ObjexxFCL::FArray2D< typename >::arg_FArray
private
template<typename >
typedef Super::Base ObjexxFCL::FArray2D< typename >::Base
template<typename >
typedef Base::ConstPointer ObjexxFCL::FArray2D< typename >::ConstPointer
template<typename >
typedef Base::Difference ObjexxFCL::FArray2D< typename >::Difference
template<typename >
typedef DynamicIndexRange ObjexxFCL::FArray2D< typename >::IR
template<typename >
typedef Base::pointer ObjexxFCL::FArray2D< typename >::pointer
template<typename >
typedef Base::Pointer ObjexxFCL::FArray2D< typename >::Pointer
template<typename >
typedef Super::proxy_FArray ObjexxFCL::FArray2D< typename >::proxy_FArray
private
template<typename >
typedef Super::real_FArray ObjexxFCL::FArray2D< typename >::real_FArray
private
template<typename >
typedef Base::reference ObjexxFCL::FArray2D< typename >::reference
template<typename >
typedef Base::Reference ObjexxFCL::FArray2D< typename >::Reference
template<typename >
typedef Base::Section ObjexxFCL::FArray2D< typename >::Section
template<typename >
typedef Super::IR ObjexxFCL::FArray2D< typename >::SIR
template<typename >
typedef Base::Size ObjexxFCL::FArray2D< typename >::Size
template<typename >
typedef Base::size_type ObjexxFCL::FArray2D< typename >::size_type
template<typename >
typedef FArray2< T > ObjexxFCL::FArray2D< typename >::Super
private
template<typename >
typedef Base::Value ObjexxFCL::FArray2D< typename >::Value
template<typename >
typedef Base::value_type ObjexxFCL::FArray2D< typename >::value_type

Constructor & Destructor Documentation

template<typename >
ObjexxFCL::FArray2D< typename >::FArray2D ( )
inline

Default Constructor.

Referenced by ObjexxFCL::FArray2D< double >::redimension().

template<typename >
ObjexxFCL::FArray2D< typename >::FArray2D ( FArray2D< typename > const &  a)
inline

Copy Constructor.

template<typename >
template<typename U >
ObjexxFCL::FArray2D< typename >::FArray2D ( FArray2D< U > const &  a)
inlineexplicit

Copy Constructor Template.

template<typename >
template<typename U >
ObjexxFCL::FArray2D< typename >::FArray2D ( FArray2< U > const &  a)
inlineexplicit

Super Constructor Template.

template<typename >
ObjexxFCL::FArray2D< typename >::FArray2D ( IR const &  I1_a,
IR const &  I2_a 
)
inline

IndexRange Constructor.

template<typename >
ObjexxFCL::FArray2D< typename >::FArray2D ( IR const &  I1_a,
IR const &  I2_a,
T const &  t 
)
inline

IndexRange + Initializer Value Constructor.

template<typename >
ObjexxFCL::FArray2D< typename >::FArray2D ( IR const &  I1_a,
IR const &  I2_a,
InitializerFunction const &  function_a 
)
inline

IndexRange + Initializer Function Constructor.

template<typename >
template<typename U >
ObjexxFCL::FArray2D< typename >::FArray2D ( FArray2< U > const &  a,
IR const &  I1_a,
IR const &  I2_a 
)
inline

Super + IndexRange Constructor Template.

template<typename >
template<typename U >
ObjexxFCL::FArray2D< typename >::FArray2D ( FArray2< U > const &  a,
IR const &  I1_a,
IR const &  I2_a,
T const &  t 
)
inline

Super + IndexRange + Fill Value Constructor Template.

template<typename >
virtual ObjexxFCL::FArray2D< typename >::~FArray2D ( )
inlinevirtual

Destructor.

Member Function Documentation

template<typename >
Section const ObjexxFCL::FArray2D< typename >::a ( int const  i1,
int const  i2 
) const
inline

Section Starting at array( i1, i2 )

Referenced by ObjexxFCL::FArray2D< double >::FArray2D().

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::clear ( )
inlinevirtual
template<typename >
bool ObjexxFCL::FArray2D< typename >::contains ( int const  i1,
int const  i2 
) const
inlinevirtual

Contains Indexed Element?

Reimplemented from ObjexxFCL::FArray2< T >.

template<typename >
void ObjexxFCL::FArray2D< typename >::destructed ( Subject const &  )
inlinevirtual

Update for Destruction of a Subject.

Implements ObjexxFCL::Observer.

template<typename >
static FArray2D ObjexxFCL::FArray2D< typename >::diag ( IR const &  I_a,
T const &  d 
)
inlinestatic

Diagonal Matrix Named Constructor.

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::dimension ( IR const &  I1_a,
IR const &  I2_a 
)
inline
template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::dimension ( IR const &  I1_a,
IR const &  I2_a,
T const &  t 
)
inline

Dimension by IndexRanges + Initializer Value.

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::dimension ( IR const &  I1_a,
IR const &  I2_a,
InitializerFunction const &  function_a 
)
inline

Dimension by IndexRanges + Initializer Function.

template<typename >
template<typename U >
FArray2D& ObjexxFCL::FArray2D< typename >::dimension ( FArray2< U > const &  a)
inline

Dimension by Array Template.

template<typename >
template<typename U >
FArray2D& ObjexxFCL::FArray2D< typename >::dimension ( FArray2< U > const &  a,
T const &  t 
)
inline

Dimension by Array + Initializer Value Template.

template<typename >
template<typename U >
FArray2D& ObjexxFCL::FArray2D< typename >::dimension ( FArray2< U > const &  a,
InitializerFunction const &  function_a 
)
inline

Dimension by Array + Initializer Function Template.

template<typename >
void ObjexxFCL::FArray2D< typename >::dimension_assign ( SIR const &  I1_a,
SIR const &  I2_a 
)
inlineprotectedvirtual

Dimension by IndexRanges.

Implements ObjexxFCL::FArray2< T >.

template<typename >
void ObjexxFCL::FArray2D< typename >::dimension_real ( )
inlineprivate
template<typename >
bool ObjexxFCL::FArray2D< typename >::dimensions_initialized ( ) const
inlinevirtual
template<typename >
IR const& ObjexxFCL::FArray2D< typename >::I1 ( ) const
inlinevirtual
template<typename >
IR const& ObjexxFCL::FArray2D< typename >::I2 ( ) const
inlinevirtual
template<typename >
static FArray2D ObjexxFCL::FArray2D< typename >::identity ( IR const &  I_a)
inlinestatic

Identity Matrix Named Constructor.

template<typename >
size_type ObjexxFCL::FArray2D< typename >::index ( int const  i1,
int const  i2 
) const
inline

Linear Index.

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::initialize ( )
inline
template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::initializer ( T const &  t)
inline

Set Initializer Value.

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::initializer ( InitializerFunction const &  function_a)
inline

Set Initializer Function.

template<typename >
bool ObjexxFCL::FArray2D< typename >::initializer_active ( ) const
inlinevirtual

Initializer Active?

Implements ObjexxFCL::FArray< T >.

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::initializer_clear ( )
inline

Clear Initializer.

template<typename >
void ObjexxFCL::FArray2D< typename >::insert_as_observer ( )
inlineprivate

Insert as Observer of the IndexRanges.

Referenced by ObjexxFCL::FArray2D< double >::FArray2D().

template<typename >
int ObjexxFCL::FArray2D< typename >::l1 ( ) const
inlinevirtual

Lower Index of Dimension 1.

Implements ObjexxFCL::FArray2< T >.

Referenced by average_score_components().

template<typename >
int ObjexxFCL::FArray2D< typename >::l2 ( ) const
inlinevirtual

Lower Index of Dimension 2.

Implements ObjexxFCL::FArray2< T >.

Referenced by average_score_components().

template<typename >
T const& ObjexxFCL::FArray2D< typename >::operator() ( int const  i1,
int const  i2 
) const
inline

array( i1, i2 ) const

Referenced by ObjexxFCL::FArray2D< double >::FArray2D().

template<typename >
T& ObjexxFCL::FArray2D< typename >::operator() ( int const  i1,
int const  i2 
)
inline

array( i1, i2 )

template<typename >
template<typename U >
FArray2D& ObjexxFCL::FArray2D< typename >::operator*= ( FArray2< U > const &  a)
inline

*= Array Template

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::operator*= ( T const &  t)
inline

*= Value

template<typename >
template<typename U >
FArray2D& ObjexxFCL::FArray2D< typename >::operator+= ( FArray2< U > const &  a)
inline

+= Array Template

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::operator+= ( T const &  t)
inline

+= Value

template<typename >
template<typename U >
FArray2D& ObjexxFCL::FArray2D< typename >::operator-= ( FArray2< U > const &  a)
inline

-= Array Template

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::operator-= ( T const &  t)
inline

-= Value

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::operator/= ( T const &  t)
inline

/= Value

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::operator= ( FArray2D< typename > const &  a)
inline

Copy Assignment.

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::operator= ( Super const &  a)
inline

Super Assignment.

template<typename >
template<typename U >
FArray2D& ObjexxFCL::FArray2D< typename >::operator= ( FArray2< U > const &  a)
inline

Super Assignment Template.

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::operator= ( T const &  t)
inline

= Value

template<typename >
T const& ObjexxFCL::FArray2D< typename >::operator[] ( size_type const  i) const
inline

array[ i ] const: Linear Subscript

template<typename >
T& ObjexxFCL::FArray2D< typename >::operator[] ( size_type const  i)
inline

array[ i ]: Linear Subscript

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::redimension ( IR const &  I1_a,
IR const &  I2_a 
)
inline

Data-Preserving Redimension by IndexRanges.

template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::redimension ( IR const &  I1_a,
IR const &  I2_a,
T const &  t 
)
inline

Data-Preserving Redimension by IndexRanges + Fill Value.

template<typename >
template<typename U >
FArray2D& ObjexxFCL::FArray2D< typename >::redimension ( FArray2< U > const &  a)
inline

Data-Preserving Redimension by Array Template.

template<typename >
template<typename U >
FArray2D& ObjexxFCL::FArray2D< typename >::redimension ( FArray2< U > const &  a,
T const &  t 
)
inline

Data-Preserving Redimension by Array + Fill Value Template.

template<typename >
void ObjexxFCL::FArray2D< typename >::remove_as_observer ( )
inlineprivate

Remove as Observer of the IndexRanges.

template<typename >
void ObjexxFCL::FArray2D< typename >::setup_real ( )
inlineprivate

Setup for IndexRange Constructor.

Referenced by ObjexxFCL::FArray2D< double >::FArray2D().

template<typename >
size_type ObjexxFCL::FArray2D< typename >::size2 ( ) const
inlinevirtual
template<typename >
FArray2D& ObjexxFCL::FArray2D< typename >::swap ( FArray2D< typename > &  v)
inline
template<typename >
int ObjexxFCL::FArray2D< typename >::u1 ( ) const
inlinevirtual

Upper Index of Dimension 1.

Implements ObjexxFCL::FArray2< T >.

Referenced by average_score_components(), and dump_table().

template<typename >
int ObjexxFCL::FArray2D< typename >::u2 ( ) const
inlinevirtual

Upper Index of Dimension 2.

Implements ObjexxFCL::FArray2< T >.

Referenced by average_score_components().

template<typename >
void ObjexxFCL::FArray2D< typename >::update ( )
inlinevirtual

Update.

Implements ObjexxFCL::Observer.

Friends And Related Function Documentation

template<typename >
friend class FArray2A< T >
friend
template<typename >
template<typename >
friend class FArray2D
friend
template<typename >
friend class FArray2P< T >
friend
template<typename >
FArray2D operator* ( Super const &  a,
T const &  t 
)
friend

Array * Value.

template<typename >
FArray2D operator* ( T const &  t,
Super const &  a 
)
friend

Value * Array.

template<typename >
FArray2D operator+ ( Super const &  a,
Super const &  b 
)
friend

Array + Array.

template<typename >
FArray2D operator+ ( Super const &  a,
T const &  t 
)
friend

Array + Value.

template<typename >
FArray2D operator+ ( T const &  t,
Super const &  a 
)
friend

Value + Array.

template<typename >
FArray2D operator- ( Super const &  a)
friend

-Array

template<typename >
FArray2D operator- ( Super const &  a,
Super const &  b 
)
friend

Array - Array.

template<typename >
FArray2D operator- ( Super const &  a,
T const &  t 
)
friend

Array - Value.

template<typename >
FArray2D operator- ( T const &  t,
Super const &  a 
)
friend

Value - Array.

template<typename >
FArray2D operator/ ( Super const &  a,
T const &  t 
)
friend

Array / Value.

template<typename >
template<typename U >
void swap ( FArray2D< U > &  a,
FArray2D< U > &  b 
)
friend

Swap.

template<typename >
template<typename U >
FArray2D<U> transposed ( FArray2< U > const &  a)
friend

Transposed.

Member Data Documentation

template<typename >
IR ObjexxFCL::FArray2D< typename >::I1_
private
template<typename >
IR ObjexxFCL::FArray2D< typename >::I2_
private
template<typename >
Initializer ObjexxFCL::FArray2D< typename >::initializer_
private

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