![]() |
Rosetta
2021.16
|
FArray: Fortran-Compatible Array Hierarchy Abstract Base Class. More...
#include <FArraySection.hh>
Public Types | |
| typedef FArray< T > | Base |
| typedef FArrayTraits< T > | Traits |
| typedef FArraySection< T > | Section |
| typedef IndexRange | IR |
| typedef T | value_type |
| typedef T & | reference |
| typedef T const & | const_reference |
| typedef T * | pointer |
| typedef T const * | const_pointer |
| typedef std::size_t | size_type |
| typedef std::ptrdiff_t | difference_type |
| typedef T | Value |
| typedef T & | Reference |
| typedef T const & | ConstReference |
| typedef T * | Pointer |
| typedef T const * | ConstPointer |
| typedef std::size_t | Size |
| typedef std::ptrdiff_t | Difference |
Public Member Functions | |
| virtual | ~FArray () |
| Destructor. More... | |
| FArray & | operator= (T const &t) |
| = Value More... | |
| FArray & | operator+= (T const &t) |
| += Value More... | |
| FArray & | operator-= (T const &t) |
| -= Value More... | |
| FArray & | operator*= (T const &t) |
| *= Value More... | |
| FArray & | operator/= (T const &t) |
| /= Value More... | |
| T const & | operator[] (size_type const i) const |
| array[ i ] const: Linear Subscript More... | |
| T & | operator[] (size_type const i) |
| array[ i ]: Linear Subscript More... | |
| virtual bool | dimensions_initialized () const =0 |
| Dimensions Initialized? More... | |
| virtual bool | initializer_active () const =0 |
| Initializer Active? 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... | |
| virtual FArray & | clear () |
| Clear. More... | |
| virtual FArray & | to_default () |
| Assign Default Value to all Elements. More... | |
| void | zero () |
| Assign Zero to all Elements. More... | |
| void | to_zero () |
| Assign Zero to all Elements. More... | |
Static Public Attributes | |
| static size_type const | npos = static_cast< size_type >( -1 ) |
| Unbounded "size". More... | |
| static size_type const | max_size = npos - static_cast< size_type >( 1 ) |
| Max array size. More... | |
Protected Types | |
| typedef internal::InitializerSentinel | InitializerSentinel |
| typedef internal::ProxySentinel | ProxySentinel |
Protected Member Functions | |
| FArray () | |
| Default Constructor. More... | |
| FArray (FArray const &a) | |
| Copy Constructor. More... | |
| FArray (FArray const &a, T const &v) | |
| Filled Copy Constructor - use the other data from the array, but fill with the given value. More... | |
| template<typename U > | |
| 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... | |
| FArray & | operator= (FArray const &a) |
| Copy Assignment. More... | |
| template<typename U > | |
| void | operator= (FArray< U > const &a) |
| Copy Assignment Template. More... | |
| template<typename U > | |
| void | operator+= (FArray< U > const &a) |
| += Array Template More... | |
| template<typename U > | |
| 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... | |
| FArray & | resize (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... | |
Static Protected Member Functions | |
| 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 | |
| size_type | array_size_ |
| Size of data array. More... | |
| T * | array_ |
| 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... | |
| T * | sarray_ |
| Shifted pointer to data array. More... | |
Friends | |
| template<typename > | |
| class | FArray |
| bool | operator== (FArray const &a, FArray const &b) |
| FArray == FArray. More... | |
| bool | operator!= (FArray const &a, FArray const &b) |
| FArray != FArray. More... | |
FArray: Fortran-Compatible Array Hierarchy Abstract Base Class.
| typedef FArray< T > ObjexxFCL::FArray< typename >::Base |
| typedef T const* ObjexxFCL::FArray< typename >::const_pointer |
| typedef T const& ObjexxFCL::FArray< typename >::const_reference |
| typedef T const* ObjexxFCL::FArray< typename >::ConstPointer |
| typedef T const& ObjexxFCL::FArray< typename >::ConstReference |
| typedef std::ptrdiff_t ObjexxFCL::FArray< typename >::Difference |
| typedef std::ptrdiff_t ObjexxFCL::FArray< typename >::difference_type |
|
protected |
| typedef IndexRange ObjexxFCL::FArray< typename >::IR |
| typedef T* ObjexxFCL::FArray< typename >::pointer |
| typedef T* ObjexxFCL::FArray< typename >::Pointer |
|
protected |
| typedef T& ObjexxFCL::FArray< typename >::reference |
| typedef T& ObjexxFCL::FArray< typename >::Reference |
| typedef FArraySection< T > ObjexxFCL::FArray< typename >::Section |
| typedef std::size_t ObjexxFCL::FArray< typename >::Size |
| typedef std::size_t ObjexxFCL::FArray< typename >::size_type |
| typedef FArrayTraits< T > ObjexxFCL::FArray< typename >::Traits |
| typedef T ObjexxFCL::FArray< typename >::Value |
| typedef T ObjexxFCL::FArray< typename >::value_type |
|
inlineprotected |
Default Constructor.
|
inlineprotected |
Copy Constructor.
|
inlineprotected |
Filled Copy Constructor - use the other data from the array, but fill with the given value.
|
inlineexplicitprotected |
Copy Constructor Template.
|
inlineexplicitprotected |
Size Constructor.
|
inlineprotected |
Size + InitializerSentinel Constructor.
|
inlineprotected |
Default Proxy Constructor.
|
inlineprotected |
Array Proxy Constructor.
|
inlineprotected |
Non-Const Array Proxy Constructor.
|
inlineprotected |
Section Proxy Constructor.
|
inlineprotected |
Non-Const Section Proxy Constructor.
|
inlineprotected |
Value Proxy Constructor.
|
inlineprotected |
Non-Const Value Proxy Constructor.
|
inlinevirtual |
Destructor.
|
inline |
Active?
|
inline |
Array Size.
|
inline |
Array Size Bounded?
|
inline |
Array Size Unbounded?
|
inlineprotected |
Attach Proxy/Argument Array to Const Array of Same Rank.
|
inlineprotected |
Attach Proxy/Argument Array to Array of Same Rank.
|
inlineprotected |
Attach Proxy/Argument Array to Const Array.
|
inlineprotected |
Attach Proxy/Argument Array to Array.
|
inlineprotected |
Attach Proxy/Argument Array to Const Section.
|
inlineprotected |
Attach Proxy/Argument Array to Section.
|
inlineprotected |
Attach Proxy/Argument Array to Const Value.
|
inlineprotected |
Attach Proxy/Argument Array to Value.
|
inlinevirtual |
Clear.
Reimplemented in ObjexxFCL::FArray6A< typename >, ObjexxFCL::FArray6P< typename >, ObjexxFCL::FArray5A< typename >, ObjexxFCL::FArray5P< typename >, ObjexxFCL::FArray4P< typename >, ObjexxFCL::FArray4A< typename >, ObjexxFCL::FArray3P< typename >, ObjexxFCL::FArray3A< typename >, ObjexxFCL::FArray2P< typename >, ObjexxFCL::FArray2A< typename >, ObjexxFCL::KeyFArray6D< typename >, ObjexxFCL::FArray6D< typename >, ObjexxFCL::FArray1P< typename >, ObjexxFCL::FArray1A< typename >, ObjexxFCL::KeyFArray5D< typename >, ObjexxFCL::FArray5D< typename >, ObjexxFCL::KeyFArray4D< typename >, ObjexxFCL::FArray4D< typename >, ObjexxFCL::FArray6< typename >, ObjexxFCL::FArray6< T >, ObjexxFCL::KeyFArray3D< typename >, ObjexxFCL::FArray3D< typename >, ObjexxFCL::KeyFArray2D< typename >, ObjexxFCL::FArray2D< typename >, ObjexxFCL::FArray2D< double >, ObjexxFCL::FArray5< typename >, ObjexxFCL::FArray5< T >, ObjexxFCL::FArray2< typename >, ObjexxFCL::FArray2< T >, ObjexxFCL::FArray4< typename >, ObjexxFCL::FArray4< T >, ObjexxFCL::KeyFArray1D< typename >, ObjexxFCL::FArray1D< typename >, ObjexxFCL::FArray1D< double >, ObjexxFCL::FArray3< typename >, ObjexxFCL::FArray3< T >, ObjexxFCL::FArray1< typename >, and ObjexxFCL::FArray1< T >.
Referenced by pyrosetta.bindings.pose.ResidueLabelAccessor::discard().
|
inlineprotected |
Detach Proxy/Argument Array.
|
pure virtual |
Dimensions Initialized?
Implemented in ObjexxFCL::FArray6A< typename >, ObjexxFCL::FArray6P< typename >, ObjexxFCL::FArray5A< typename >, ObjexxFCL::FArray5P< typename >, ObjexxFCL::FArray4P< typename >, ObjexxFCL::FArray4A< typename >, ObjexxFCL::FArray3P< typename >, ObjexxFCL::FArray3A< typename >, ObjexxFCL::FArray2P< typename >, ObjexxFCL::FArray2A< typename >, ObjexxFCL::FArray1P< typename >, ObjexxFCL::FArray1A< typename >, ObjexxFCL::KeyFArray6D< typename >, ObjexxFCL::FArray6D< typename >, ObjexxFCL::KeyFArray5D< typename >, ObjexxFCL::FArray2D< typename >, ObjexxFCL::FArray2D< double >, ObjexxFCL::FArray5D< typename >, ObjexxFCL::KeyFArray2D< typename >, ObjexxFCL::KeyFArray4D< typename >, ObjexxFCL::FArray4D< typename >, ObjexxFCL::KeyFArray3D< typename >, ObjexxFCL::FArray3D< typename >, ObjexxFCL::KeyFArray1D< typename >, ObjexxFCL::FArray1D< typename >, and ObjexxFCL::FArray1D< double >.
|
pure virtual |
Initializer Active?
Implemented in ObjexxFCL::FArray6A< typename >, ObjexxFCL::FArray6P< typename >, ObjexxFCL::FArray5A< typename >, ObjexxFCL::FArray5P< typename >, ObjexxFCL::FArray4P< typename >, ObjexxFCL::FArray4A< typename >, ObjexxFCL::FArray3P< typename >, ObjexxFCL::FArray3A< typename >, ObjexxFCL::FArray2P< typename >, ObjexxFCL::FArray2A< typename >, ObjexxFCL::FArray1P< typename >, ObjexxFCL::FArray1A< typename >, ObjexxFCL::KeyFArray6D< typename >, ObjexxFCL::FArray6D< typename >, ObjexxFCL::KeyFArray5D< typename >, ObjexxFCL::FArray5D< typename >, ObjexxFCL::FArray2D< typename >, ObjexxFCL::FArray2D< double >, ObjexxFCL::KeyFArray2D< typename >, ObjexxFCL::KeyFArray4D< typename >, ObjexxFCL::FArray4D< typename >, ObjexxFCL::KeyFArray3D< typename >, ObjexxFCL::FArray3D< typename >, ObjexxFCL::KeyFArray1D< typename >, ObjexxFCL::FArray1D< typename >, and ObjexxFCL::FArray1D< double >.
Referenced by ObjexxFCL::FArray< T >::resize().
|
inline |
All Elements Default Valued?
|
inline |
Uniform Valued?
|
inline |
Uniform Valued with Specified Value?
|
inline |
All Elements Zero?
|
inline |
*= Value
|
inlineprotected |
+= Array Template
|
inline |
+= Value
|
inlineprotected |
-= Array Template
|
inline |
-= Value
|
inline |
/= Value
|
inlineprotected |
Copy Assignment.
|
inlineprotected |
Copy Assignment Template.
|
inline |
= Value
|
inline |
array[ i ] const: Linear Subscript
|
inline |
array[ i ]: Linear Subscript
|
inline |
Owner?
|
inline |
Proxy?
|
inlineprotected |
Resize a Real Array.
Referenced by PyMOL-Rosetta-relay-client.SecretInputDialog::__init__().
|
inlineprotected |
Shift Setup.
|
inline |
Active Array Size.
Referenced by ObjexxFCL::FArray1A< typename >::attach(), ObjexxFCL::FArray1P< typename >::attach(), ObjexxFCL::FArray2A< typename >::attach(), ObjexxFCL::FArray2P< typename >::attach(), ObjexxFCL::FArray3P< typename >::attach(), ObjexxFCL::FArray3A< typename >::attach(), ObjexxFCL::FArray4P< typename >::attach(), ObjexxFCL::FArray4A< typename >::attach(), ObjexxFCL::FArray5P< typename >::attach(), ObjexxFCL::FArray5A< typename >::attach(), ObjexxFCL::FArray6P< typename >::attach(), ObjexxFCL::FArray6A< typename >::attach(), ObjexxFCL::cross(), ObjexxFCL::cross_product(), prepare_threaded_model(), rna_sequence_recovery_metrics(), basic::svd::SVD_Solver::set_matrix_A(), basic::svd::SVD_Solver::set_vector_b(), and ObjexxFCL::format::SW().
|
inline |
Active Array Size Bounded?
Referenced by ObjexxFCL::FArray< T >::operator*=(), ObjexxFCL::FArray< T >::operator+=(), ObjexxFCL::FArray< T >::operator-=(), ObjexxFCL::FArray< T >::operator/=(), and ObjexxFCL::FArray< T >::operator=().
|
inlinestaticprotected |
Array Size Product of Specified Bounded Dimensional Sizes.
Referenced by ObjexxFCL::FArray< T >::size_of().
|
inlinestaticprotected |
Array Size Product of Specified Bounded Dimensional Sizes.
|
inlinestaticprotected |
Array Size Product of Specified Bounded Dimensional Sizes.
|
inlinestaticprotected |
Array Size Product of Specified Bounded Dimensional Sizes.
|
inlinestaticprotected |
Array Size Product of Specified Bounded Dimensional Sizes.
|
inlinestaticprotected |
Array Size Product of Specified Bounded Dimensional Sizes.
|
inlinestaticprotected |
Array Size Product of Specified Bounded IndexRanges.
|
inlinestaticprotected |
Array Size Product of Specified Bounded IndexRanges.
|
inlinestaticprotected |
Array Size Product of Specified Bounded IndexRanges.
|
inlinestaticprotected |
Array Size Product of Specified Bounded IndexRanges.
|
inlinestaticprotected |
Array Size Product of Specified Bounded IndexRanges.
|
inlinestaticprotected |
Array Size Product of Specified Bounded IndexRanges.
|
inlineprotected |
Active Array Size Setup.
|
inline |
Active Array Size Unbounded?
|
inlineprotected |
Swap.
|
inlinevirtual |
Assign Default Value to all Elements.
Reimplemented in ObjexxFCL::FArray6< typename >, ObjexxFCL::FArray6< T >, ObjexxFCL::FArray5< typename >, ObjexxFCL::FArray5< T >, ObjexxFCL::FArray2< typename >, ObjexxFCL::FArray2< T >, ObjexxFCL::FArray4< typename >, ObjexxFCL::FArray4< T >, ObjexxFCL::FArray3< typename >, ObjexxFCL::FArray3< T >, ObjexxFCL::FArray1< typename >, and ObjexxFCL::FArray1< T >.
|
inline |
Assign Zero to all Elements.
|
inlineprotected |
Update Proxy Array Attachment to Const Array.
|
inlineprotected |
Update Proxy Array Attachment to Array.
|
inline |
Assign Zero to all Elements.
|
protected |
Pointer to data array.
Referenced by ObjexxFCL::FArray< T >::active(), ObjexxFCL::FArray< T >::attach(), ObjexxFCL::FArray< T >::clear(), ObjexxFCL::FArray< T >::detach(), ObjexxFCL::FArray< T >::FArray(), ObjexxFCL::FArray< T >::is_default(), ObjexxFCL::FArray< T >::is_uniform(), ObjexxFCL::FArray< T >::is_zero(), ObjexxFCL::FArray< T >::operator*=(), ObjexxFCL::FArray< T >::operator+=(), ObjexxFCL::FArray< T >::operator-=(), ObjexxFCL::FArray< T >::operator/=(), ObjexxFCL::FArray< T >::operator=(), ObjexxFCL::FArray< T >::operator[](), ObjexxFCL::FArray< T >::resize(), ObjexxFCL::FArray< T >::shift_set(), ObjexxFCL::FArray< T >::swapB(), ObjexxFCL::FArray< T >::to_default(), ObjexxFCL::FArray< T >::to_zero(), ObjexxFCL::FArray< T >::update_to(), ObjexxFCL::FArray< T >::zero(), and ObjexxFCL::FArray< T >::~FArray().
|
protected |
Size of data array.
Referenced by ObjexxFCL::FArray< T >::array_size(), ObjexxFCL::FArray< T >::array_size_bounded(), ObjexxFCL::FArray< T >::array_size_unbounded(), ObjexxFCL::FArray< T >::attach(), ObjexxFCL::FArray< T >::clear(), ObjexxFCL::FArray< T >::detach(), ObjexxFCL::FArray< T >::resize(), ObjexxFCL::FArray< T >::size_set(), ObjexxFCL::FArray< T >::swapB(), and ObjexxFCL::FArray< T >::update_to().
|
static |
Max array size.
Referenced by ObjexxFCL::FArray< T >::size_of().
|
static |
Unbounded "size".
Referenced by ObjexxFCL::FArray< T >::array_size_bounded(), ObjexxFCL::FArray< T >::array_size_unbounded(), ObjexxFCL::FArray< T >::attach(), ObjexxFCL::FArray< T >::operator[](), ObjexxFCL::FArray< T >::resize(), ObjexxFCL::FArray< T >::size_bounded(), ObjexxFCL::FArray< T >::size_of(), and ObjexxFCL::FArray< T >::size_unbounded().
|
protected |
Owner of data array?
Referenced by ObjexxFCL::FArray< T >::attach(), ObjexxFCL::FArray< T >::clear(), ObjexxFCL::FArray< T >::detach(), ObjexxFCL::FArray< T >::owner(), ObjexxFCL::FArray< T >::proxy(), ObjexxFCL::FArray< T >::resize(), ObjexxFCL::FArray< T >::swapB(), ObjexxFCL::FArray< T >::update_to(), and ObjexxFCL::FArray< T >::~FArray().
|
protected |
Shifted pointer to data array.
Referenced by ObjexxFCL::FArray< T >::attach(), ObjexxFCL::FArray< T >::clear(), ObjexxFCL::FArray< T >::detach(), ObjexxFCL::FArray< T >::shift_set(), and ObjexxFCL::FArray< T >::swapB().
|
protected |
Array shift.
Referenced by ObjexxFCL::FArray< T >::attach(), ObjexxFCL::FArray< T >::clear(), ObjexxFCL::FArray< T >::detach(), ObjexxFCL::FArray1A< typename >::FArray1A(), ObjexxFCL::FArray1P< typename >::FArray1P(), ObjexxFCL::FArray2A< typename >::FArray2A(), ObjexxFCL::FArray2P< typename >::FArray2P(), ObjexxFCL::FArray3A< typename >::FArray3A(), ObjexxFCL::FArray3P< typename >::FArray3P(), ObjexxFCL::FArray4A< typename >::FArray4A(), ObjexxFCL::FArray4P< typename >::FArray4P(), ObjexxFCL::FArray5A< typename >::FArray5A(), ObjexxFCL::FArray5P< typename >::FArray5P(), ObjexxFCL::FArray6A< typename >::FArray6A(), ObjexxFCL::FArray6P< typename >::FArray6P(), ObjexxFCL::FArray< T >::shift_set(), and ObjexxFCL::FArray< T >::swapB().
|
protected |
Size of active array.
Referenced by ObjexxFCL::FArray< T >::attach(), ObjexxFCL::FArray< T >::clear(), ObjexxFCL::FArray< T >::detach(), ObjexxFCL::FArray< T >::FArray(), ObjexxFCL::FArray< T >::is_default(), ObjexxFCL::FArray< T >::is_uniform(), ObjexxFCL::FArray< T >::is_zero(), ObjexxFCL::FArray< T >::operator*=(), ObjexxFCL::FArray< T >::operator+=(), ObjexxFCL::FArray< T >::operator-=(), ObjexxFCL::FArray< T >::operator/=(), ObjexxFCL::FArray< T >::operator=(), ObjexxFCL::FArray< T >::operator[](), ObjexxFCL::FArray< T >::resize(), ObjexxFCL::FArray< T >::size(), ObjexxFCL::FArray< T >::size_bounded(), ObjexxFCL::FArray< T >::size_set(), ObjexxFCL::FArray< T >::size_unbounded(), ObjexxFCL::FArray< T >::swapB(), ObjexxFCL::FArray< T >::to_default(), ObjexxFCL::FArray< T >::to_zero(), and ObjexxFCL::FArray< T >::zero().
1.8.7