PCL
|
Generic dynamic array of pointers to objects. More...
#include <IndirectArray.h>
Public Types | |
using | allocator = pcl::Allocator< T, A > |
using | array_implementation = Array< void *, A > |
using | array_iterator = typename array_implementation::iterator |
using | block_allocator = A |
using | const_array_iterator = typename array_implementation::const_iterator |
using | const_iterator = T *const * |
using | const_reverse_iterator = ReverseRandomAccessIterator< const_iterator, const T * > |
using | equal = IndirectEqual< const T * > |
using | iterator = T ** |
using | less = IndirectLess< const T * > |
using | reverse_iterator = ReverseRandomAccessIterator< iterator, T * > |
Public Member Functions | |
IndirectArray ()=default | |
IndirectArray (const IndirectArray &)=default | |
template<class FI > | |
IndirectArray (FI i, FI j) | |
IndirectArray (IndirectArray &&)=default | |
IndirectArray (size_type n) | |
IndirectArray (size_type n, const T *p) | |
~IndirectArray () | |
void | Add (const IndirectArray &x) |
void | Add (const T *p, size_type n=1) |
template<class FI > | |
void | Add (FI i, FI j) |
const allocator & | Allocator () const |
void | Append (const IndirectArray &x) |
void | Append (const T *p, size_type n=1) |
template<class FI > | |
void | Append (FI p, FI q) |
template<class F > | |
void | Apply (F f) |
template<class F > | |
void | Apply (F f) const |
void | Assign (const IndirectArray &x) |
void | Assign (const T *p, size_type n=1) |
template<class FI > | |
void | Assign (FI i, FI j) |
iterator | At (size_type i) |
const_iterator | At (size_type i) const |
size_type | Available () const |
iterator | Begin () |
iterator | begin () |
const_iterator | Begin () const |
const_iterator | begin () const |
size_type | Capacity () const |
void | Clear () |
template<class C > | |
void | CloneAssign (const C &x) |
const_iterator | ConstBegin () const |
const_iterator | ConstEnd () const |
const_reverse_iterator | ConstReverseBegin () const |
const_reverse_iterator | ConstReverseEnd () const |
bool | Contains (const T &v) const |
template<class BP > | |
bool | Contains (const T &v, BP p) const |
bool | Contains (const T *p) const |
template<class C > | |
iterator | ContainsSubset (const C &c) const |
template<class C , class BP > | |
iterator | ContainsSubset (const C &c, BP p) const |
template<class FI > | |
iterator | ContainsSubset (FI i, FI j) const |
template<class FI , class BP > | |
iterator | ContainsSubset (FI i, FI j, BP p) const |
size_type | Count (const T &v) const |
template<class BP > | |
size_type | Count (const T &v, BP p) const |
size_type | Count (const T *p) const |
template<class UP > | |
size_type | CountIf (UP p) const |
void | Delete () |
void | Delete (const T &v) |
template<class BP > | |
void | Delete (const T &v, BP p) |
void | Delete (iterator i, iterator j) |
void | Delete (iterator i, size_type n=1) |
void | Destroy () |
void | Destroy (const T &v) |
template<class BP > | |
void | Destroy (const T &v, BP p) |
void | Destroy (iterator i, iterator j) |
void | Destroy (iterator i, size_type n=1) |
iterator | End () |
iterator | end () |
const_iterator | End () const |
const_iterator | end () const |
void | EnsureUnique () |
iterator | Expand (size_type n=1) |
void | Fill (const T &v) |
T * | First () |
const T * | First () const |
template<class F > | |
iterator | FirstThat (F f) |
template<class F > | |
const_iterator | FirstThat (F f) const |
iterator | Grow (const_iterator i, size_type n=1) |
uint64 | Hash (uint64 seed=0) const |
uint32 | Hash32 (uint32 seed=0) const |
uint64 | Hash64 (uint64 seed=0) const |
void | Import (iterator i, iterator j) |
iterator | Insert (const_iterator i, const IndirectArray &x) |
iterator | Insert (const_iterator i, const T *p, size_type n=1) |
template<class FI > | |
iterator | Insert (const_iterator i, FI p, FI q) |
bool | IsAliasOf (const IndirectArray &x) const |
bool | IsEmpty () const |
bool | IsUnique () const |
bool | IsValid () const |
T * | Last () |
const T * | Last () const |
template<class F > | |
iterator | LastThat (F f) |
template<class F > | |
const_iterator | LastThat (F f) const |
size_type | Length () const |
size_type | LowerBound () const |
iterator | MaxItem () |
const_iterator | MaxItem () const |
template<class BP > | |
iterator | MaxItem (BP p) |
template<class BP > | |
const_iterator | MaxItem (BP p) const |
iterator | MinItem () |
const_iterator | MinItem () const |
template<class BP > | |
iterator | MinItem (BP p) |
template<class BP > | |
const_iterator | MinItem (BP p) const |
iterator | MutableIterator (const_iterator i) |
T *& | operator* () |
const T * | operator* () const |
IndirectArray & | operator= (const IndirectArray &x) |
IndirectArray & | operator= (IndirectArray &&x) |
T *& | operator[] (size_type i) |
const T * | operator[] (size_type i) const |
void | Pack () |
void | Prepend (const IndirectArray &x) |
void | Prepend (const T *p, size_type n=1) |
template<class FI > | |
void | Prepend (FI p, FI q) |
iterator | Release () |
void | Remove (const T &v) |
template<class BP > | |
void | Remove (const T &v, BP p) |
void | Remove (const T *p) |
void | Remove (const_iterator i, const_iterator j) |
void | Remove (const_iterator i, size_type n=1) |
void | RemoveFirst (size_type n=1) |
void | RemoveLast (size_type n=1) |
iterator | Replace (const_iterator i, const_iterator j, const IndirectArray &x) |
iterator | Replace (const_iterator i, const_iterator j, const T *p, size_type n=1) |
template<class FI > | |
iterator | Replace (const_iterator i, const_iterator j, FI p, FI q) |
void | Reserve (size_type n) |
void | Resize (size_type n) |
void | Reverse () |
reverse_iterator | ReverseBegin () |
const_reverse_iterator | ReverseBegin () const |
reverse_iterator | ReverseEnd () |
const_reverse_iterator | ReverseEnd () const |
void | Rotate (distance_type n) |
iterator | Search (const T &v) |
const_iterator | Search (const T &v) const |
template<class BP > | |
iterator | Search (const T &v, BP p) |
template<class BP > | |
const_iterator | Search (const T &v, BP p) const |
iterator | Search (const T *p) |
const_iterator | Search (const T *p) const |
iterator | SearchLast (const T &v) |
const_iterator | SearchLast (const T &v) const |
template<class BP > | |
iterator | SearchLast (const T &v, BP p) |
template<class BP > | |
const_iterator | SearchLast (const T &v, BP p) const |
iterator | SearchLast (const T *p) |
const_iterator | SearchLast (const T *p) const |
template<class BI > | |
iterator | SearchLastSubset (BI i, BI j) |
template<class BI > | |
const_iterator | SearchLastSubset (BI i, BI j) const |
template<class BI , class BP > | |
iterator | SearchLastSubset (BI i, BI j, BP p) |
template<class BI , class BP > | |
const_iterator | SearchLastSubset (BI i, BI j, BP p) const |
template<class C > | |
iterator | SearchLastSubset (const C &c) |
template<class C > | |
const_iterator | SearchLastSubset (const C &c) const |
template<class C , class BP > | |
iterator | SearchLastSubset (const C &c, BP p) |
template<class C , class BP > | |
const_iterator | SearchLastSubset (const C &c, BP p) const |
template<class C > | |
iterator | SearchSubset (const C &c) |
template<class C > | |
const_iterator | SearchSubset (const C &c) const |
template<class C , class BP > | |
iterator | SearchSubset (const C &c, BP p) |
template<class C , class BP > | |
const_iterator | SearchSubset (const C &c, BP p) const |
template<class FI > | |
iterator | SearchSubset (FI i, FI j) |
template<class FI > | |
const_iterator | SearchSubset (FI i, FI j) const |
template<class FI , class BP > | |
iterator | SearchSubset (FI i, FI j, BP p) |
template<class FI , class BP > | |
const_iterator | SearchSubset (FI i, FI j, BP p) const |
void | SetAllocator (const allocator &a) |
void | ShiftLeft (const T *p, size_type n=1) |
void | ShiftRight (const T *p, size_type n=1) |
void | Shrink (size_type n=1) |
size_type | Size () const |
void | Sort () |
template<class BP > | |
void | Sort (BP p) |
void | Squeeze () |
template<class S > | |
S & | ToCommaSeparated (S &s) const |
template<class S > | |
S & | ToNewLineSeparated (S &s) const |
template<class S , typename SP > | |
S & | ToSeparated (S &s, SP separator) const |
template<class S , typename SP , class AF > | |
S & | ToSeparated (S &s, SP separator, AF append) const |
template<class S > | |
S & | ToSpaceSeparated (S &s) const |
template<class S > | |
S & | ToTabSeparated (S &s) const |
void | Transfer (IndirectArray &&x) |
void | Transfer (IndirectArray &x) |
void | Truncate (const_iterator i) |
void | UniquifyIterator (iterator &i) |
void | UniquifyIterators (iterator &i, iterator &j) |
size_type | UpperBound () const |
Friends | |
void | Swap (IndirectArray &x1, IndirectArray &x2) |
IndirectArray is a generic, finite ordered sequence of pointers to objects, implemented as a reference-counted, dynamic array of pointers to T instances. The type A provides dynamic allocation for contiguous sequences of void* (StandardAllocator is used by default).
In the PixInsight/PCL platform, dynamic arrays of pointers to objects are powerful building blocks for the implementation of flexible data structures, including heterogeneous containers.
Unlike ReferenceArray, IndirectArray can contain null pointers because it does not require dereferencing pointers. Actually, IndirectArray by itself does not need to know anything about the objects pointed to by its contained pointers, and precisely here lies its flexibility as a generic container.
Definition at line 91 of file IndirectArray.h.
using pcl::IndirectArray< T, A >::allocator = pcl::Allocator<T,A> |
#
Definition at line 101 of file IndirectArray.h.
using pcl::IndirectArray< T, A >::array_implementation = Array<void*, A> |
#
Definition at line 113 of file IndirectArray.h.
using pcl::IndirectArray< T, A >::array_iterator = typename array_implementation::iterator |
#
Definition at line 117 of file IndirectArray.h.
using pcl::IndirectArray< T, A >::block_allocator = A |
#
Definition at line 97 of file IndirectArray.h.
using pcl::IndirectArray< T, A >::const_array_iterator = typename array_implementation::const_iterator |
#
Definition at line 121 of file IndirectArray.h.
using pcl::IndirectArray< T, A >::const_iterator = T* const* |
#
Definition at line 109 of file IndirectArray.h.
using pcl::IndirectArray< T, A >::const_reverse_iterator = ReverseRandomAccessIterator<const_iterator, const T*> |
#
Definition at line 129 of file IndirectArray.h.
using pcl::IndirectArray< T, A >::equal = IndirectEqual<const T*> |
#
Definition at line 133 of file IndirectArray.h.
using pcl::IndirectArray< T, A >::iterator = T** |
#
Definition at line 105 of file IndirectArray.h.
using pcl::IndirectArray< T, A >::less = IndirectLess<const T*> |
#
Definition at line 137 of file IndirectArray.h.
using pcl::IndirectArray< T, A >::reverse_iterator = ReverseRandomAccessIterator<iterator, T*> |
#
Definition at line 125 of file IndirectArray.h.
|
default |
Constructs an empty indirect array.
|
inlineexplicit |
Constructs an indirect array of length n. All contained pointers are initialized to nullptr
.
Definition at line 151 of file IndirectArray.h.
|
inline |
Constructs an indirect array that stores n copies of a pointer p.
Definition at line 159 of file IndirectArray.h.
|
inline |
Constructs an indirect array as a copy of the sequence of pointers defined by the range [i,j) of forward iterators.
Definition at line 169 of file IndirectArray.h.
|
default |
Copy constructor.
|
default |
Move constructor.
|
inline |
Destroys an IndirectArray object.
Deallocates the internal array of pointers to objects, but does not destroy the pointed objects. To destroy them, you have to call Destroy() or Delete() explicitly.
Definition at line 191 of file IndirectArray.h.
|
inline |
A synonym for Append( const IndirectArray<>& )
Definition at line 913 of file IndirectArray.h.
|
inline |
A synonym for Append( const T*, size_type )
Definition at line 921 of file IndirectArray.h.
|
inline |
A synonym for Append( FI, FI )
Definition at line 930 of file IndirectArray.h.
|
inline |
Returns a reference to the allocator object used by this indirect array.
Definition at line 317 of file IndirectArray.h.
References pcl::Allocator< T, A >::Allocator().
|
inline |
Appends a copy of the sequence of pointers contained by the indirect array x to this indirect array.
Definition at line 854 of file IndirectArray.h.
Referenced by pcl::ReferenceArray< T, A >::Replace().
|
inline |
Appends a contiguous sequence of n pointers equal to p to this indirect array.
Definition at line 863 of file IndirectArray.h.
|
inline |
Appends a copy of the sequence of pointers defined by the range [p,q) of forward iterators to this indirect array.
Definition at line 875 of file IndirectArray.h.
|
inline |
Calls f( T& x ) for every object x pointed to by non-null pointers in this array, successively from the first contained pointer to the last.
Definition at line 1404 of file IndirectArray.h.
|
inline |
Calls f( const T& x ) for every object x pointed to by non-null pointers in this array, successively from the first contained pointer to the last.
Definition at line 1414 of file IndirectArray.h.
|
inline |
Assigns an indirect array x to this indirect array.
Decrements the reference counter of the current array data, and destroys it if it becomes unreferenced.
Increments the reference counter of the source array's data and references it in this array.
Definition at line 631 of file IndirectArray.h.
|
inline |
Replaces the contents of this indirect array with a sequence of n pointers equal to p.
Definition at line 677 of file IndirectArray.h.
|
inline |
Replaces the contents of this indirect array with a copy of the sequence of pointers defined by the range [i,j) of forward iterators.
Definition at line 689 of file IndirectArray.h.
|
inline |
Returns an array iterator located at the specified index i.
Definition at line 333 of file IndirectArray.h.
|
inline |
Returns an immutable array iterator located at the specified index i.
Definition at line 341 of file IndirectArray.h.
|
inline |
Returns the length of the space available in this indirect array, or zero if this indirect array cannot contain more pointers. The available space is the number of pointers to objects that can be added to this indirect array without requiring a reallocation. It is equal to Capacity() - Length() by definition.
Definition at line 263 of file IndirectArray.h.
|
inline |
Returns a mutable iterator located at the beginning of this array.
Definition at line 399 of file IndirectArray.h.
Referenced by pcl::IndirectSortedArray< T, A >::Add(), pcl::operator<(), and pcl::operator==().
|
inline |
STL-compatible iteration. Equivalent to Begin().
Definition at line 580 of file IndirectArray.h.
|
inline |
Returns an immutable iterator located at the beginning of this array.
Definition at line 407 of file IndirectArray.h.
|
inline |
STL-compatible iteration. Equivalent to Begin() const.
Definition at line 588 of file IndirectArray.h.
|
inline |
Returns the capacity of this indirect array. The capacity is the maximum number of pointers to objects that this indirect array can contain without requiring a reallocation.
Definition at line 251 of file IndirectArray.h.
|
inline |
Removes all pointers contained by this object, yielding an empty indirect array.
If this array is empty, then calling this member function has no effect.
If this array uniquely references its internal array data structure, all pointers contained are deallocated; otherwise its reference counter is decremented. Then a new, empty array data structure is created and uniquely referenced.
Only pointers are removed by this function; the pointed objects are not affected in any way.
Definition at line 1082 of file IndirectArray.h.
|
inline |
Replaces the contents of this indirect array with a set of pointers to newly created copies of the objects stored in the specified container x. This function works for both direct and indirect containers.
Keep in mind that after calling this function (with a reference to a nonempty container) this array will store pointers to newly allocated objects. You should call Delete() or Destroy() to deallocate these objects before destructing this array, or copy the pointers somewhere, in order to avoid memory leaks.
Definition at line 706 of file IndirectArray.h.
|
inline |
Returns an immutable iterator located at the beginning of this array.
Definition at line 415 of file IndirectArray.h.
|
inline |
Returns an immutable iterator located at the end of this array.
Definition at line 439 of file IndirectArray.h.
|
inline |
Returns an immutable reverse iterator located at the reverse beginning of this indirect array.
The reverse beginning corresponds to the last pointer in the array.
Definition at line 472 of file IndirectArray.h.
|
inline |
Returns an immutable reverse iterator located at the reverse end of this indirect array.
The reverse end corresponds to a (nonexistent) pointer immediately before the first pointer in the array.
Definition at line 508 of file IndirectArray.h.
|
inline |
#
Definition at line 1809 of file IndirectArray.h.
|
inline |
#
Definition at line 1824 of file IndirectArray.h.
|
inline |
#
Definition at line 1816 of file IndirectArray.h.
|
inline |
#
Definition at line 1848 of file IndirectArray.h.
|
inline |
#
Definition at line 1856 of file IndirectArray.h.
|
inline |
#
Definition at line 1832 of file IndirectArray.h.
|
inline |
#
Definition at line 1840 of file IndirectArray.h.
|
inline |
Returns the number of objects equal to v pointed to by non-null pointers stored in this indirect array.
Definition at line 1467 of file IndirectArray.h.
|
inline |
Returns the number of objects pointed to by non-null pointers stored in this indirect array such that for each counted pointer x the binary predicate p( *x, v ) returns true.
Definition at line 1487 of file IndirectArray.h.
|
inline |
Returns the number of pointers equal to p stored in this indirect array.
Definition at line 1476 of file IndirectArray.h.
|
inline |
Returns the number of objects pointed to by non-null pointers stored in this indirect array such that for each counted pointer x the unary predicate p( *x ) returns true.
Definition at line 1498 of file IndirectArray.h.
References pcl::CountIf().
|
inline |
Destroys all objects pointed to by non-null pointers in this indirect array. All pointers contained are set equal to nullptr
, and the array length is not modified.
Definition at line 1185 of file IndirectArray.h.
|
inline |
Destroys all objects equal to v pointed to by non-null pointers contained by this array.
This function destroys and deallocates the pointed objects, then replaces the corresponding pointers by nullptr
in this array. The array length is not modified.
Definition at line 1147 of file IndirectArray.h.
|
inline |
Destroys every object pointed to by a pointer x in this array such that the binary predicate p( *x, v ) is true.
This function destroys and deallocates the pointed objects, then replaces the corresponding pointers by nullptr
in this array. The array length is not modified.
Definition at line 1168 of file IndirectArray.h.
|
inline |
Destroys the objects pointed to by a range [i,j) of pointers in this indirect array. Null pointers are ignored.
This function destroys and deallocates the pointed objects, then replaces the corresponding pointers by nullptr
in this array. The array length is not modified.
Definition at line 1122 of file IndirectArray.h.
References pcl::Max(), and pcl::Min().
|
inline |
Destroys a sequence of n contiguous pointed objects, starting at the specified location i in this indirect array. Null pointers are ignored.
This function destroys and deallocates the pointed objects, then replaces the corresponding pointers by nullptr
in this array. The array length is not modified.
Definition at line 1099 of file IndirectArray.h.
|
inline |
Destroys all objects pointed to by non-null pointers in this indirect array, and removes all pointers, yielding an empty array.
Definition at line 1287 of file IndirectArray.h.
|
inline |
Destroys and removes all objects equal to v pointed to by non-null pointers contained by this array.
This function destroys and deallocates the pointed objects, then removes the corresponding pointers in this array. The array length is decreased by the number of destroyed objects.
Definition at line 1240 of file IndirectArray.h.
|
inline |
Destroys and removes every object pointed to by a pointer x in this array such that the binary predicate p( *x, v ) is true.
This function destroys and deallocates the pointed objects, then removes the corresponding pointers in this array. The array length is decreased by the number of destroyed objects.
Definition at line 1266 of file IndirectArray.h.
|
inline |
Destroys and removes the objects pointed to by a range [i,j) of pointers in this indirect array. Null pointers are ignored.
This function destroys and deallocates the pointed objects, then removes the corresponding pointers in this array. The array length is decreased by the number of destroyed objects.
Definition at line 1223 of file IndirectArray.h.
|
inline |
Destroys and removes a sequence of n contiguous pointed objects, starting at the specified location i in this indirect array. Null pointers are ignored.
This function destroys and deallocates the pointed objects, then removes the corresponding pointers in this array. The array length is decreased by the number of destroyed objects.
Definition at line 1206 of file IndirectArray.h.
|
inline |
Returns a mutable iterator located at the end of this array.
Definition at line 423 of file IndirectArray.h.
Referenced by pcl::IndirectSortedArray< T, A >::Add(), pcl::operator<(), and pcl::operator==().
|
inline |
STL-compatible iteration. Equivalent to End().
Definition at line 596 of file IndirectArray.h.
|
inline |
Returns an immutable iterator located at the end of this array.
Definition at line 431 of file IndirectArray.h.
|
inline |
STL-compatible iteration. Equivalent to End() const.
Definition at line 604 of file IndirectArray.h.
|
inline |
Ensures that this indirect array uniquely references its contained data pointers.
If necessary, this member function generates a duplicate of the array of pointers, references it, and then decrements the reference counter of the original pointer array.
Definition at line 224 of file IndirectArray.h.
|
inline |
Appends a contiguous sequence of n null pointers to this indirect array. This operation is equivalent to:
Returns an iterator pointing to the first newly created array element, or End() if n is zero.
Definition at line 763 of file IndirectArray.h.
|
inline |
Sets all objects contained by this array equal to v.
Definition at line 1394 of file IndirectArray.h.
|
inline |
Returns a copy of the first pointer in this indirect array, or nullptr
if this array is empty.
Definition at line 517 of file IndirectArray.h.
|
inline |
Returns a copy of the first pointer to an unmodifiable object in this indirect array, or nullptr
if this array is empty.
Definition at line 526 of file IndirectArray.h.
|
inline |
Returns an iterator pointing to the first non-null pointer in this array that points to an object x such that f( const T& x ) is true. Returns End() if such pointer does not exist.
Definition at line 1436 of file IndirectArray.h.
|
inline |
Returns an iterator pointing to the first non-null pointer in this array that points to an object x such that f( const T& x ) is true. Returns End() if such pointer does not exist.
Definition at line 1425 of file IndirectArray.h.
|
inline |
Inserts a contiguous sequence of n null pointers at the specified location i in this indirect array.
The insertion point i is constrained to stay in the range [Begin(),End()) of existing array elements.
Returns an iterator pointing to the first newly created array element, or i if n is zero.
Definition at line 749 of file IndirectArray.h.
|
inline |
Returns a non-cryptographic hash value computed for this indirect array. This function is a synonym for Hash64().
Definition at line 2059 of file IndirectArray.h.
References pcl::Hash64().
|
inline |
Returns a 32-bit non-cryptographic hash value computed for this indirect array.
This function calls pcl::Hash32() for the internal array of pointers, not for the pointed objects.
The seed parameter can be used to generate repeatable hash values. It can also be set to a random value in compromised environments.
Definition at line 2050 of file IndirectArray.h.
|
inline |
Returns a 64-bit non-cryptographic hash value computed for this indirect array.
This function calls pcl::Hash64() for the internal array of pointers, not for the pointed objects.
The seed parameter can be used to generate repeatable hash values. It can also be set to a random value in compromised environments.
Definition at line 2035 of file IndirectArray.h.
|
inline |
Causes this indirect array to store the sequence of pointers defined by the range [i,j) of indirect array iterators (pointers to pointers). The previously referenced data structure is dereferenced and deallocated if it becomes unreferenced.
Definition at line 718 of file IndirectArray.h.
|
inline |
Inserts a copy of the sequence of pointers contained by the indirect array x at the specified location i in this indirect array.
The insertion point i is constrained to stay in the range [Begin(),End()) of existing array elements. The source array x can safely be a reference to this array.
Returns an iterator pointing to the first newly created array element, or i if x is empty.
Definition at line 812 of file IndirectArray.h.
|
inline |
Inserts a contiguous sequence of n pointers equal to p at the specified location i.
The insertion point i is constrained to stay in the range [Begin(),End()) of existing array elements.
Returns an iterator pointing to the first inserted array element, or i if n is zero.
Definition at line 827 of file IndirectArray.h.
|
inline |
Inserts a copy of the sequence of pointers defined by the range [p,q) of forward iterators at the specified location i.
The insertion point i is constrained to stay in the range [Begin(),End()) of existing array elements.
Returns an iterator pointing to the first inserted array element, or i if q <= p.
Definition at line 845 of file IndirectArray.h.
|
inline |
Returns true iff this indirect array is an alias of the indirect array x.
Two objects are aliases if both share the same data. Two indirect containers are aliases if they share a unique set of data pointers.
Definition at line 211 of file IndirectArray.h.
|
inline |
Returns true iff this indirect array is empty.
Definition at line 291 of file IndirectArray.h.
|
inline |
Returns true iff this indirect array uniquely references its contained array of pointers to objects.
Definition at line 199 of file IndirectArray.h.
|
inline |
Returns true only if this indirect array is valid. An indirect array is valid if it references an internal structure with an array of pointers, even if it is an empty array.
In general, all IndirectArray objects are valid with only two exceptions:
An invalid array object cannot be used and should be destroyed immediately. Invalid arrays are always destroyed automatically during move construction and move assignment operations.
Definition at line 283 of file IndirectArray.h.
|
inline |
Returns a copy of the last pointer in this indirect array, or nullptr
if this array is empty.
Definition at line 535 of file IndirectArray.h.
|
inline |
Returns a copy of the last pointer to an unmodifiable object in this indirect array, or nullptr
if this array is empty.
Definition at line 544 of file IndirectArray.h.
|
inline |
Returns a mutable iterator pointing to the last non-null pointer in this indirect array that points to an object x such that f( const T& x ) is true. Returns End() if such pointer does not exist.
Definition at line 1458 of file IndirectArray.h.
|
inline |
Returns an immutable iterator pointing to the last non-null pointer in this indirect array that points to an object x such that f( const T& x ) is true. Returns End() if such pointer does not exist.
Definition at line 1447 of file IndirectArray.h.
|
inline |
Returns the length of this indirect array.
Definition at line 241 of file IndirectArray.h.
Referenced by pcl::operator==().
|
inline |
Returns the minimum legal index in this array (always zero). For empty arrays, this function returns a meaningless value.
Definition at line 300 of file IndirectArray.h.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Returns a mutable iterator pointing to the same array element as the specified immutable iterator i.
Definition at line 356 of file IndirectArray.h.
|
inline |
Returns a reference to the first pointer stored in this indirect array.
Definition at line 382 of file IndirectArray.h.
|
inline |
Returns a copy of the first pointer to an unmodifiable object stored in this indirect array.
Definition at line 391 of file IndirectArray.h.
|
inline |
Copy assignment operator.
Causes this indirect array to reference the same set of pointers as another array x. Returns a reference to this object.
Definition at line 616 of file IndirectArray.h.
|
inline |
Move assignment operator. Returns a reference to this object.
Definition at line 639 of file IndirectArray.h.
|
inline |
Returns a reference to the pointer stored at the specified index i. No bounds checking is performed.
Definition at line 365 of file IndirectArray.h.
|
inline |
Returns a copy of the pointer to an unmodifiable object stored at the specified index i. No bounds checking is performed.
Definition at line 374 of file IndirectArray.h.
|
inline |
Removes all null pointers from this array.
Definition at line 1296 of file IndirectArray.h.
|
inline |
Inserts a copy of the sequence of pointers contained by the indirect array x at the beginning of this indirect array.
Definition at line 884 of file IndirectArray.h.
|
inline |
Inserts a contiguous sequence of n pointers equal to p at the beginning of this indirect array.
Definition at line 893 of file IndirectArray.h.
|
inline |
Inserts a copy of the sequence of pointers defined by the range [p,q) of forward iterators at the beginning of this indirect array.
Definition at line 905 of file IndirectArray.h.
|
inline |
Releases the set of pointers contained by this indirect array.
This member function returns a pointer to the internal block of pointers stored in this object, after ensuring that it is uniquely referenced. If the array is empty, this function may return the null pointer.
Before returning, this member function empties this array without deallocating its contained data. The caller is then responsible for deallocating the returned block when it is no longer required.
Definition at line 734 of file IndirectArray.h.
|
inline |
Removes all existing non-null pointers whose pointed objects are equal to the specified value v in this indirect array.
Only pointers are removed by this function; the pointed objects are not affected in any way.
Definition at line 1029 of file IndirectArray.h.
|
inline |
Removes every non-null pointer x in this array such that the binary predicate p( *x, v ) is true.
Only pointers are removed by this function; the pointed objects are not affected in any way.
Definition at line 1047 of file IndirectArray.h.
|
inline |
Removes all contained pointers equal to p in this indirect array.
Only pointers are removed by this function; the pointed objects are not affected in any way.
Definition at line 1063 of file IndirectArray.h.
|
inline |
Removes a sequence of contiguous pointers in the range [i,j) of this indirect array.
If the starting iterator i is located at or after the end of this array, or if j precedes i, this function does nothing. Otherwise the range [i,j) is constrained to stay in the range [Begin(),End()) of existing array elements.
Only pointers are removed by this function; the pointed objects are not affected in any way.
Definition at line 964 of file IndirectArray.h.
|
inline |
Removes a sequence of n contiguous pointers starting at the specified location i in this indirect array.
If the starting iterator i is located at or after the end of this array, or if n is zero, this function does nothing. Otherwise i is constrained to stay in the range [Begin(),End()) of existing array elements.
Only pointers are removed by this function; the pointed objects are not affected in any way.
Definition at line 947 of file IndirectArray.h.
|
inline |
Removes a contiguous leading sequence of n existing pointers from this indirect array. This operation is equivalent to:
If the specified count n is greater than or equal to the length of this array, this function calls Clear() to yield an empty array.
Only pointers are removed by this function; the pointed objects are not affected in any way.
Definition at line 982 of file IndirectArray.h.
|
inline |
Removes a contiguous trailing sequence of n existing pointers from this indirect array. This operation is equivalent to:
If the specified count n is greater than or equal to the length of this array, this function calls Clear() to yield an empty array.
Only pointers are removed by this function; the pointed objects are not affected in any way.
Definition at line 999 of file IndirectArray.h.
|
inline |
Replaces a sequence of contiguous pointers defined by the range [i,j) of iterators in this array by the pointers stored in an indirect array x.
If the starting iterator i is located at or after the end of this array, or if j precedes i, this function does nothing. Otherwise the range [i,j) is constrained to stay in the range [Begin(),End()) of existing array elements.
Returns an iterator pointing to the first replaced array element, i if no elements are replaced, or nullptr
if the resulting array is empty.
Definition at line 1314 of file IndirectArray.h.
|
inline |
Replaces a sequence of contiguous pointers defined by the range [i,j) in this indirect array by n copies of the specified pointer p.
If the starting iterator i is located at or after the end of this array, or if j precedes i, this function does nothing. Otherwise the range [i,j) is constrained to stay in the range [Begin(),End()) of existing array elements.
Returns an iterator pointing to the first replaced array element, i if no elements are replaced, or nullptr
if the resulting array is empty.
Definition at line 1333 of file IndirectArray.h.
|
inline |
Replaces a sequence of contiguous pointers defined by the range [i,j) in this indirect array by the sequence of pointers in the range [p,q) of forward iterators.
If the starting iterator i is located at or after the end of this array, or if j precedes i, this function does nothing. Otherwise the range [i,j) is constrained to stay in the range [Begin(),End()) of existing array elements.
Returns an iterator pointing to the first replaced array element, i if no elements are replaced, or nullptr
if the resulting array is empty.
Definition at line 1356 of file IndirectArray.h.
|
inline |
Ensures that this indirect array has enough capacity to store n pointers.
After calling this member function with n > 0, this object is guaranteed to uniquely reference its pointer array data.
Definition at line 1369 of file IndirectArray.h.
|
inline |
Resizes this indirect array to the specified length n, either by appending null pointers, or by removing existing trailing pointers. This operation is equivalent to:
When the array length is reduced, only pointers are removed by this function; the pointed objects are not affected in any way.
Definition at line 792 of file IndirectArray.h.
|
inline |
#
Definition at line 1565 of file IndirectArray.h.
|
inline |
Returns a mutable reverse iterator located at the reverse beginning of this indirect array.
The reverse beginning corresponds to the last pointer in the array.
Definition at line 450 of file IndirectArray.h.
|
inline |
Returns an immutable reverse iterator located at the reverse beginning of this indirect array.
The reverse beginning corresponds to the last pointer in the array.
Definition at line 461 of file IndirectArray.h.
|
inline |
Returns a mutable reverse iterator located at the reverse end of this indirect array.
The reverse end corresponds to a (nonexistent) pointer immediately before the first pointer in the array.
Definition at line 484 of file IndirectArray.h.
|
inline |
Returns an immutable reverse iterator located at the reverse end of this indirect array.
The reverse end corresponds to a (nonexistent) pointer immediately before the first pointer in the array.
Definition at line 496 of file IndirectArray.h.
|
inline |
#
Definition at line 1572 of file IndirectArray.h.
|
inline |
#
Definition at line 1600 of file IndirectArray.h.
|
inline |
#
Definition at line 1593 of file IndirectArray.h.
|
inline |
#
Definition at line 1630 of file IndirectArray.h.
|
inline |
#
Definition at line 1622 of file IndirectArray.h.
|
inline |
#
Definition at line 1614 of file IndirectArray.h.
|
inline |
#
Definition at line 1607 of file IndirectArray.h.
|
inline |
#
Definition at line 1644 of file IndirectArray.h.
|
inline |
#
Definition at line 1637 of file IndirectArray.h.
|
inline |
#
Definition at line 1674 of file IndirectArray.h.
|
inline |
#
Definition at line 1666 of file IndirectArray.h.
|
inline |
#
Definition at line 1658 of file IndirectArray.h.
|
inline |
#
Definition at line 1651 of file IndirectArray.h.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
#
Definition at line 1786 of file IndirectArray.h.
|
inline |
#
Definition at line 1778 of file IndirectArray.h.
|
inline |
#
Definition at line 1802 of file IndirectArray.h.
|
inline |
#
Definition at line 1794 of file IndirectArray.h.
|
inline |
#
Definition at line 1722 of file IndirectArray.h.
|
inline |
#
Definition at line 1714 of file IndirectArray.h.
|
inline |
#
Definition at line 1738 of file IndirectArray.h.
|
inline |
#
Definition at line 1730 of file IndirectArray.h.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Sets a new allocator object for this array.
Definition at line 325 of file IndirectArray.h.
|
inline |
#
Definition at line 1579 of file IndirectArray.h.
|
inline |
#
Definition at line 1586 of file IndirectArray.h.
|
inline |
Removes a contiguous trailing sequence of n existing pointers from this indirect array. This function is a synonym for RemoveLast().
Definition at line 772 of file IndirectArray.h.
|
inline |
Returns the total number of bytes required to store the array of data pointers contained by this indirect array.
Definition at line 233 of file IndirectArray.h.
|
inline |
|
inline |
|
inline |
Causes this indirect array to allocate the exact required memory space to store its contained pointers.
If the array has excess capacity, a new copy of its contained pointers is generated and stored in a newly allocated memory block that fits them exactly, then the previous memory block is deallocated.
If the array is empty, calling this function is equivalent to Clear(). Note that in this case a previously allocated memory block (by a call to Reserve()) may also be deallocated.
Definition at line 1386 of file IndirectArray.h.
|
inline |
Generates a comma-separated sequence of string tokens. Returns a reference to the target string s.
This function is equivalent to:
Definition at line 1978 of file IndirectArray.h.
|
inline |
Generates a newline-separated sequence of string tokens. Returns a reference to the target string s.
This function is equivalent to:
Definition at line 2020 of file IndirectArray.h.
|
inline |
Generates a sequence of string tokens separated with the specified separator string. Returns a reference to the target string s.
For each non-null pointer in this indirect array, this function appends a string representation of the pointed object (known as a token) to the target string s. If the array contains more than one non-null pointer, successive tokens are separated with the specified separator.
The string type S must have a meaningful Append() member function and type conversion semantics to transform an array element to a string. The standard String and IsoString PCL classes provide the required functionality for most scalar types, although it is probably better to use String::ToSeparated() and IsoString::ToSeparated() instead of calling these functions directly.
Definition at line 1901 of file IndirectArray.h.
|
inline |
Generates a sequence of string tokens separated with the specified separator string by calling an append function. Returns a reference to the target string s.
For each non-null pointer p in this indirect array, this function appends a string representation of the pointed object (known as a token) to the target string s by calling the append function:
If the array contains more than one non-null pointer, successive tokens are separated by calling:
The string type S must have type conversion semantics to transform an array element to a string. The standard String and IsoString PCL classes provide the required functionality for most scalar types, although it is probably easier to use String::ToSeparated() and IsoString::ToSeparated() instead of calling these functions directly.
Definition at line 1945 of file IndirectArray.h.
|
inline |
Generates a space-separated sequence of string tokens. Returns a reference to the target string s.
This function is equivalent to:
Definition at line 1992 of file IndirectArray.h.
|
inline |
Generates a tabulator-separated sequence of string tokens. Returns a reference to the target string s.
This function is equivalent to:
Definition at line 2006 of file IndirectArray.h.
|
inline |
Transfers data from another indirect array x to this object.
Decrements the reference counter of the current array data, and destroys it if it becomes unreferenced.
Transfers source array data to this object, leaving empty and invalid the source object x.
Definition at line 668 of file IndirectArray.h.
|
inline |
Transfers data from another indirect array x to this object.
Decrements the reference counter of the current array data, and destroys it if it becomes unreferenced.
Transfers source array data to this object, leaving empty and invalid the source object x.
Definition at line 654 of file IndirectArray.h.
|
inline |
Removes a trailing sequence of contiguous pointers from the specified iterator of this array. This operation is equivalent to:
If the specified iterator is located at or after the end of this array, this function does nothing. Otherwise the iterator is constrained to stay in the range [Begin(),End()) of existing array elements.
Only pointers are removed by this function; the pointed objects are not affected in any way.
Definition at line 1017 of file IndirectArray.h.
|
inline |
Ensures that the specified iterator points to a uniquely referenced pointer. If necessary, this function builds a new, uniquely referenced copy of this indirect array by calling EnsureUnique().
If the iterator i is changed, it is guaranteed to point to the pointer at the same array index it was pointing to before calling this function.
Definition at line 557 of file IndirectArray.h.
|
inline |
Ensures that the specified iterators point to uniquely referenced pointers. If necessary, this function builds a new, uniquely referenced copy of this indirect array by calling EnsureUnique().
If the iterators i and j are changed, they are guaranteed to point to the pointers at the same array indices they were pointing to before calling this function.
Definition at line 571 of file IndirectArray.h.
|
inline |
Returns the maximum legal index in this array. It is equal to Length()-1. For empty arrays, this function returns a meaningless value.
Definition at line 309 of file IndirectArray.h.
|
friend |
Exchanges two indirect arrays x1 and x2.
Definition at line 1879 of file IndirectArray.h.