Gecode::SharedArray Gecode::SharedHandle shared-array.hpp Gecode::SharedArray::SAO class T T
Associated types
T typedef T Gecode::SharedArray< T >::value_type value_type Type of the view stored in this array. T & typedef T& Gecode::SharedArray< T >::reference reference Type of a reference to the value type. const T & typedef const T& Gecode::SharedArray< T >::const_reference const_reference Type of a constant reference to the value type. T * typedef T* Gecode::SharedArray< T >::pointer pointer Type of a pointer to the value type. const T * typedef const T* Gecode::SharedArray< T >::const_pointer const_pointer Type of a read-only pointer to the value type. T * typedef T* Gecode::SharedArray< T >::iterator iterator Type of the iterator used to iterate through this array's elements. const T * typedef const T* Gecode::SharedArray< T >::const_iterator const_iterator Type of the iterator used to iterate read-only through this array's elements. std::reverse_iterator< T * > typedef std::reverse_iterator<T*> Gecode::SharedArray< T >::reverse_iterator reverse_iterator Type of the iterator used to iterate backwards through this array's elements. std::reverse_iterator< const T * > typedef std::reverse_iterator<const T*> Gecode::SharedArray< T >::const_reverse_iterator const_reverse_iterator Type of the iterator used to iterate backwards and read-only through this array's elements.
Array iteration
iterator forceinline SharedArray< T >::iterator Gecode::SharedArray< T >::begin (void) begin void Return an iterator at the beginning of the array. const_iterator forceinline SharedArray< T >::const_iterator Gecode::SharedArray< T >::begin (void) const begin void Return a read-only iterator at the beginning of the array. iterator forceinline SharedArray< T >::iterator Gecode::SharedArray< T >::end (void) end void Return an iterator past the end of the array. const_iterator forceinline SharedArray< T >::const_iterator Gecode::SharedArray< T >::end (void) const end void Return a read-only iterator past the end of the array. reverse_iterator forceinline SharedArray< T >::reverse_iterator Gecode::SharedArray< T >::rbegin (void) rbegin void Return a reverse iterator at the end of the array. const_reverse_iterator forceinline SharedArray< T >::const_reverse_iterator Gecode::SharedArray< T >::rbegin (void) const rbegin void Return a reverse and read-only iterator at the end of the array. reverse_iterator forceinline SharedArray< T >::reverse_iterator Gecode::SharedArray< T >::rend (void) rend void Return a reverse iterator past the beginning of the array. const_reverse_iterator forceinline SharedArray< T >::const_reverse_iterator Gecode::SharedArray< T >::rend (void) const rend void Return a reverse and read-only iterator past the beginning of the array.
forceinline Gecode::SharedArray< T >::SharedArray (void) SharedArray void Construct as not yet intialized. The only member functions that can be used on a constructed but not yet initialized shared array is init and the assignment operator . forceinline Gecode::SharedArray< T >::SharedArray (int n) SharedArray int n Initialize as array with n elements. void forceinline void Gecode::SharedArray< T >::init (int n) init int n Initialize as array with n elements. This member function can only be used once and only if the shared array has been constructed with the default constructor. forceinline Gecode::SharedArray< T >::SharedArray (const SharedArray &a) SharedArray const SharedArray & a Initialize from shared array a (share elements) forceinline Gecode::SharedArray< T >::SharedArray (const ArgArrayBase< T > &a) SharedArray const ArgArrayBase< T > & a Initialize from argument array a. T & forceinline T & Gecode::SharedArray< T >::operator[] (int i) operator[] int i Access element at position i. const T & forceinline const T & Gecode::SharedArray< T >::operator[] (int i) const operator[] int i Access element at position i. int forceinline int Gecode::SharedArray< T >::size (void) const size void Return number of elements. class Char class Traits class T std::basic_ostream< Char, Traits > & std::basic_ostream< Char, Traits > & operator<< (std::basic_ostream< Char, Traits > &os, const SharedArray< T > &x) operator<< std::basic_ostream< Char, Traits > & os const SharedArray< T > & x Print array elements enclosed in curly brackets. Shared array with arbitrary number of elements. Sharing is implemented by reference counting: the same elements are shared among several objects. Gecode::SharedArraybegin Gecode::SharedArraybegin Gecode::SharedArrayconst_iterator Gecode::SharedArrayconst_pointer Gecode::SharedArrayconst_reference Gecode::SharedArrayconst_reverse_iterator Gecode::SharedArrayend Gecode::SharedArrayend Gecode::SharedArrayinit Gecode::SharedArrayiterator Gecode::SharedArrayobject Gecode::SharedArrayobject Gecode::SharedArrayoperator<< Gecode::SharedArrayoperator= Gecode::SharedArrayoperator[] Gecode::SharedArrayoperator[] Gecode::SharedArraypointer Gecode::SharedArrayrbegin Gecode::SharedArrayrbegin Gecode::SharedArrayreference Gecode::SharedArrayrend Gecode::SharedArrayrend Gecode::SharedArrayreverse_iterator Gecode::SharedArraySharedArray Gecode::SharedArraySharedArray Gecode::SharedArraySharedArray Gecode::SharedArraySharedArray Gecode::SharedArraySharedHandle Gecode::SharedArraySharedHandle Gecode::SharedArraySharedHandle Gecode::SharedArraysize Gecode::SharedArrayupdate Gecode::SharedArrayvalue_type Gecode::SharedArray~SharedHandle