casacore
|
simple 1-D array More...
#include <Block.h>
Public Types | |
typedef T | value_type |
Define the STL-style iterators. | |
typedef T * | iterator |
typedef const T * | const_iterator |
typedef value_type * | pointer |
typedef const value_type * | const_pointer |
typedef value_type & | reference |
typedef const value_type & | const_reference |
typedef size_t | size_type |
typedef ptrdiff_t | difference_type |
Public Member Functions | |
Block () | |
Create a zero-length Block. | |
template<typename Allocator > | |
Block (AllocSpec< Allocator > const &) | |
Create a zero-length Block. | |
Block (size_t n) | |
Create a Block with the given number of points. | |
template<typename Allocator > | |
Block (size_t n, AllocSpec< Allocator > const &) | |
Create a Block with the given number of points. | |
Block (size_t n, ArrayInitPolicy initPolicy) | |
Create a Block with the given number of points. | |
template<typename Allocator > | |
Block (size_t n, ArrayInitPolicy initPolicy, AllocSpec< Allocator > const &) | |
Create a Block with the given number of points. | |
Block (size_t n, T const &val) | |
Create a Block of the given length, and initialize (via copy constructor for objects of type T) with the provided value. | |
template<typename Allocator > | |
Block (size_t n, T const &val, AllocSpec< Allocator > const &) | |
Create a Block of the given length, and initialize (via copy constructor for objects of type T) with the provided value. | |
Block (size_t n, T *&storagePointer, Bool takeOverStorage=True) | |
Create a Block from a C-array (i.e. | |
template<typename Allocator > | |
Block (size_t n, T *&storagePointer, Bool takeOverStorage, AllocSpec< Allocator > const &) | |
Create a Block from a C-array (i.e. | |
Block (const Block< T > &other) | |
Copy the other block into this one. | |
Block< T > & | operator= (const Block< T > &other) |
Assign other to this. | |
~Block () | |
Frees up the storage pointed contained in the Block. | |
void | resize (size_t n, Bool forceSmaller=False, Bool copyElements=True) |
Resizes the Block. | |
void | resize (size_t n, Bool forceSmaller, Bool copyElements, ArrayInitPolicy initPolicy) |
void | remove (size_t whichOne, Bool forceSmaller=True) |
Remove a single element from the Block. | |
void | remove (size_t whichOne, Bool forceSmaller, ArrayInitPolicy initPolicy) |
void | prohibitChangingAllocator () |
Prohibit changing allocator for this instance. | |
void | permitChangingAllocator () |
Permit changing allocator for this instance. | |
void | replaceStorage (size_t n, T *&storagePointer, Bool takeOverStorage=True) |
Replace the internal storage with a C-array (i.e. | |
template<typename Allocator > | |
void | replaceStorage (size_t n, T *&storagePointer, Bool takeOverStorage, AllocSpec< Allocator > const &) |
T & | operator[] (size_t index) |
Index into the block (0-based). | |
const T & | operator[] (size_t index) const |
Block< T > & | operator= (const T &val) |
Set all values in the block to "val". | |
void | set (const T &val) |
T * | storage () |
If you really, really, need a "raw" pointer to the beginning of the storage area this will give it to you. | |
const T * | storage () const |
size_t | nelements () const |
The number of elements contained in this Block<T> . | |
size_t | size () const |
size_t | capacity () const |
The capacity in this Block<T> . | |
Bool | empty () const |
Is the block empty (i.e. | |
iterator | begin () |
Get the begin and end iterator object for this block. | |
const_iterator | begin () const |
iterator | end () |
const_iterator | end () const |
void | traceAlloc (const void *addr, size_t sz) const |
void | traceFree (const void *addr, size_t sz) const |
Private Member Functions | |
Block (size_t n, ArrayInitPolicy initPolicy, Allocator_private::BulkAllocator< T > *allocator) | |
Block (size_t n, Allocator_private::AllocSpec< T > allocator) | |
Block (size_t n, T *&storagePointer, Bool takeOverStorage, Allocator_private::BulkAllocator< T > *allocator) | |
void | construct (size_t pos, size_t n, T const *src) |
void | construct (size_t pos, size_t n, T const &initial_value) |
void | construct (size_t pos, size_type n) |
void | destroy (size_t pos, size_type n) |
Allocator_private::BulkAllocator< T > * | get_allocator () |
void | init (ArrayInitPolicy initPolicy) |
end of friend | |
void | deinit () |
void | dealloc () |
template<typename Allocator > | |
Bool | isCompatibleAllocator () |
size_t | get_size () const |
The number of used elements in the vector. | |
void | set_size (size_t new_value) |
Set the number of used elements in the vector. | |
size_t | get_capacity () const |
The capacity of the vector. | |
void | set_capacity (size_t new_value) |
Set the capacity of the vector. | |
Static Private Member Functions | |
static bool | init_anyway () |
template<typename Allocator > | |
static Allocator_private::BulkAllocator< typename Allocator::value_type > * | get_allocator () |
Private Attributes | |
Allocator_private::BulkAllocator< T > * | allocator_p |
The allocator. | |
size_t | capacity_p |
The capacity of the vector. | |
size_t | used_p |
The number of used elements in the vector. | |
T * | array |
The actual storage. | |
Bool | destroyPointer |
Can we delete the storage upon destruction? | |
Bool | keep_allocator_p |
Can we change allocator or not? | |
Friends | |
class | Array< T > |
Additional Inherited Members | |
![]() | |
static void | setTraceSize (size_t sz) |
Set the trace size. | |
![]() | |
static void | doTraceAlloc (const void *addr, size_t nelem, DataType type, size_t sz) |
Write alloc and free trace messages. | |
static void | doTraceFree (const void *addr, size_t nelem, DataType type, size_t sz) |
![]() | |
static size_t | itsTraceSize |
simple 1-D array
forward declarations:
Public interface
This should be viewed as a block of memory without sophisticated manipulation functions. Thus it is called Block
.
Block<T>
is a simple templated 1-D array class. Indices are always 0-based. For efficiency reasons, no index checking is done unless the preprocessor symbol AIPS_ARRAY_INDEX_CHECK
is defined. Block<T>
's may be assigned to and constructed from other Block<T>
's. As no reference counting is done this can be an expensive operation, however.
The net effect of this class is meant to be unsurprising to users who think of arrays as first class objects. The name "Block" is intended to convey the concept of a solid "chunk" of things without any intervening "fancy" memory management, etc. This class was written to be used in the implementations of more functional Vector, Matrix, etc. classes, although it is expected Block<T>
will be useful on its own.
The Block class should be efficient. You should normally use Block
.
Warning: If you use the assignment operator on an element of this class, you may leave dangling references to pointers released from storage()
; Resizing the array will also have this effect if the underlying storage is actually affected;
If index checking is turned on, an out-of-bounds index will generate an indexError<uInt>
exception.
typedef const T* casacore::Block< T >::const_iterator |
typedef const value_type* casacore::Block< T >::const_pointer |
typedef const value_type& casacore::Block< T >::const_reference |
typedef ptrdiff_t casacore::Block< T >::difference_type |
typedef T* casacore::Block< T >::iterator |
typedef value_type* casacore::Block< T >::pointer |
typedef value_type& casacore::Block< T >::reference |
typedef size_t casacore::Block< T >::size_type |
typedef T casacore::Block< T >::value_type |
Define the STL-style iterators.
It makes it possible to iterate through all data elements.
|
inline |
|
inlineexplicit |
|
inlineexplicit |
Create a Block with the given number of points.
The values in Block are initialized. Note that indices range between 0 and n-1. DefaultAllocator<T> is used as an allocator.
Definition at line 218 of file Block.h.
References casacore::ArrayInitPolicies::INIT, casacore::Block< T >::init(), casacore::Block< T >::init_anyway(), and casacore::ArrayInitPolicies::NO_INIT.
|
inline |
Create a Block with the given number of points.
The values in Block are initialized. Note that indices range between 0 and n-1.
Definition at line 227 of file Block.h.
References casacore::ArrayInitPolicies::INIT, casacore::Block< T >::init(), casacore::Block< T >::init_anyway(), and casacore::ArrayInitPolicies::NO_INIT.
|
inline |
Create a Block with the given number of points.
The values in Block are uninitialized. Note that indices range between 0 and n-1. DefaultAllocator<T> is used as an allocator.
Definition at line 236 of file Block.h.
References casacore::Block< T >::init().
|
inline |
Create a Block with the given number of points.
Note that indices range between 0 and n-1.
Definition at line 245 of file Block.h.
References casacore::Block< T >::init().
|
inline |
Create a Block of the given length, and initialize (via copy constructor for objects of type T) with the provided value.
DefaultAllocator<T> is used as an allocator.
Definition at line 255 of file Block.h.
References casacore::Block< T >::allocator_p, casacore::Block< T >::array, casacore::Allocator_private::BulkAllocator< T2 >::construct(), casacore::Block< T >::dealloc(), casacore::Block< T >::get_size(), casacore::Block< T >::init(), and casacore::ArrayInitPolicies::NO_INIT.
|
inline |
Create a Block of the given length, and initialize (via copy constructor for objects of type T) with the provided value.
Definition at line 270 of file Block.h.
References casacore::Block< T >::allocator_p, casacore::Block< T >::array, casacore::Allocator_private::BulkAllocator< T2 >::construct(), casacore::Block< T >::dealloc(), casacore::Block< T >::get_size(), casacore::Block< T >::init(), and casacore::ArrayInitPolicies::NO_INIT.
|
inline |
Create a Block
from a C-array (i.e.
pointer). If takeOverStorage
is True
, The Block assumes that it owns the pointer, i.e. that it is safe to release it via allocator
when the Block is destructed, otherwise the actual storage is not destroyed. If true, storagePointer
is set to 0
. It is strongly recommended to supply an appropriate allocator
argument explicitly whenever takeOverStorage
== True to let Block
to know how to release the storagePointer
. The default allocator set by this constructor will be changed from NewDelAllocator<T>value
to DefaultAllocator<T>value
in future.
Definition at line 292 of file Block.h.
References casacore::Block< T >::destroyPointer.
|
inline |
Create a Block
from a C-array (i.e.
pointer). If takeOverStorage
is True
, The Block assumes that it owns the pointer, i.e. that it is safe to release it via allocator
when the Block is destructed, otherwise the actual storage is not destroyed. If true, storagePointer
is set to 0
.
Definition at line 305 of file Block.h.
References casacore::Block< T >::destroyPointer.
|
inline |
Copy the other block into this one.
Uses copy, not reference, semantics.
objcopy(array, other.array, get_size());
Definition at line 315 of file Block.h.
References casacore::Block< T >::allocator_p, casacore::Block< T >::array, casacore::Allocator_private::BulkAllocator< T2 >::construct(), casacore::Block< T >::dealloc(), casacore::Block< T >::get_size(), casacore::Block< T >::init(), and casacore::ArrayInitPolicies::NO_INIT.
|
inline |
Frees up the storage pointed contained in the Block.
Definition at line 347 of file Block.h.
References casacore::Block< T >::deinit().
|
inlineprivate |
Definition at line 670 of file Block.h.
References casacore::Block< T >::init().
|
inlineprivate |
Definition at line 676 of file Block.h.
References casacore::ArrayInitPolicies::INIT, casacore::Block< T >::init(), casacore::Block< T >::init_anyway(), and casacore::ArrayInitPolicies::NO_INIT.
|
inlineprivate |
Definition at line 681 of file Block.h.
References casacore::Block< T >::destroyPointer.
|
inline |
Get the begin and end iterator object for this block.
Definition at line 643 of file Block.h.
References casacore::Block< T >::array.
|
inline |
Definition at line 645 of file Block.h.
References casacore::Block< T >::array.
|
inline |
The capacity in this Block<T>
.
size() <= capacity()
is always true.
Definition at line 615 of file Block.h.
References casacore::Block< T >::get_capacity().
|
inlineprivate |
Definition at line 692 of file Block.h.
References casacore::Block< T >::allocator_p, casacore::Block< T >::array, and casacore::Allocator_private::BulkAllocator< T2 >::construct().
|
inlineprivate |
Definition at line 689 of file Block.h.
References casacore::Block< T >::allocator_p, casacore::Block< T >::array, and casacore::Allocator_private::BulkAllocator< T2 >::construct().
|
inlineprivate |
Definition at line 696 of file Block.h.
References casacore::Block< T >::allocator_p, casacore::Block< T >::array, and casacore::Allocator_private::BulkAllocator< T2 >::construct().
|
inlineprivate |
Definition at line 737 of file Block.h.
References casacore::Block< T >::allocator_p, casacore::Block< T >::array, casacore::Allocator_private::BulkAllocator< T2 >::deallocate(), casacore::Block< T >::destroyPointer, casacore::Block< T >::get_capacity(), and casacore::Block< T >::traceFree().
Referenced by casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::deinit(), and casacore::Block< T >::init().
|
inlineprivate |
Definition at line 731 of file Block.h.
References casacore::Block< T >::allocator_p, casacore::Block< T >::array, casacore::Block< T >::dealloc(), casacore::Allocator_private::BulkAllocator< T2 >::destroy(), casacore::Block< T >::destroyPointer, and casacore::Block< T >::get_size().
Referenced by casacore::Block< T >::resize(), and casacore::Block< T >::~Block().
|
inlineprivate |
Definition at line 699 of file Block.h.
References casacore::Block< T >::allocator_p, casacore::Block< T >::array, and casacore::Allocator_private::BulkAllocator< T2 >::destroy().
|
inline |
Is the block empty (i.e.
no elements)?
Definition at line 618 of file Block.h.
References casacore::Block< T >::size().
Referenced by casacore::PtrBlock< T >::empty().
|
inline |
Definition at line 647 of file Block.h.
References casacore::Block< T >::array, and casacore::Block< T >::size().
|
inline |
Definition at line 649 of file Block.h.
References casacore::Block< T >::array, and casacore::Block< T >::size().
|
inlineprivate |
Definition at line 702 of file Block.h.
References casacore::Block< T >::allocator_p.
|
inlinestaticprivate |
Definition at line 747 of file Block.h.
References casacore::Allocator_private::get_allocator().
|
inlineprivate |
The capacity of the vector.
Definition at line 768 of file Block.h.
References casacore::Block< T >::capacity_p.
Referenced by casacore::Block< T >::capacity(), casacore::Block< T >::dealloc(), casacore::Block< T >::init(), casacore::Block< T >::remove(), casacore::Block< T >::replaceStorage(), casacore::Block< T >::resize(), casacore::Block< T >::set_size(), and casacore::Block< T >::size().
|
inlineprivate |
The number of used elements in the vector.
Definition at line 761 of file Block.h.
References casacore::Block< T >::used_p.
Referenced by casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::deinit(), casacore::Block< T >::init(), casacore::Block< T >::operator=(), casacore::Block< T >::operator=(), casacore::Block< T >::operator[](), casacore::Block< T >::operator[](), casacore::Block< T >::remove(), casacore::Block< T >::replaceStorage(), casacore::Block< T >::resize(), and casacore::Block< T >::set_capacity().
|
inlineprivate |
end of friend
Definition at line 713 of file Block.h.
References casacore::Allocator_private::BulkAllocator< T2 >::allocate(), casacore::Block< T >::allocator_p, casacore::Block< T >::array, casacore::Allocator_private::BulkAllocator< T2 >::construct(), casacore::Block< T >::dealloc(), casacore::Block< T >::get_capacity(), casacore::Block< T >::get_size(), casacore::ArrayInitPolicies::INIT, casacore::Block< T >::set_capacity(), and casacore::Block< T >::traceAlloc().
Referenced by casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::Block(), and casacore::Block< T >::Block().
|
inlinestaticprivate |
Definition at line 706 of file Block.h.
Referenced by casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::remove(), and casacore::Block< T >::resize().
|
inlineprivate |
Definition at line 753 of file Block.h.
References casacore::Block< T >::allocator_p.
|
inline |
The number of elements contained in this Block<T>
.
Definition at line 609 of file Block.h.
References casacore::Block< T >::size().
Referenced by casacore::CompoundParam< T >::CompoundParam(), casacore::CompoundParam< T >::CompoundParam(), casacore::CompoundParam< T >::CompoundParam(), casacore::genSort(), casacore::genSort(), casacore::MeasConvert< M >::isNOP(), casacore::PtrBlock< T >::nelements(), casacore::BlockIO_global_functions_BlockIO::operator<<(), casacore::BlockIO_global_functions_BlockIO::operator<<(), casacore::BlockIO_global_functions_BlockIO::putBlock(), and casacore::BlockIO_global_functions_BlockIO::showBlock().
|
inline |
Assign other to this.
this resizes itself to the size of other, so after the assignment, this->nelements() == other.nelements() always.
Definition at line 332 of file Block.h.
References casacore::Block< T >::allocator_p, casacore::Block< T >::array, casacore::Allocator_private::BulkAllocator< T2 >::construct(), casacore::False, casacore::Block< T >::get_size(), casacore::ArrayInitPolicies::NO_INIT, casacore::Block< T >::resize(), casacore::Block< T >::size(), and casacore::True.
|
inline |
Set all values in the block to "val".
Definition at line 583 of file Block.h.
References casacore::Block< T >::array, and casacore::Block< T >::get_size().
|
inline |
Index into the block (0-based).
If the preprocessor symbol AIPS_ARRAY_INDEX_CHECK
is defined, index checking will be done and an out-of-bounds index will cause an indexError<uInt>
to be thrown. Note that valid indices range between 0 and nelements()-1
.
Definition at line 559 of file Block.h.
References casacore::Block< T >::array, and casacore::Block< T >::get_size().
|
inline |
Definition at line 570 of file Block.h.
References casacore::Block< T >::array, and casacore::Block< T >::get_size().
|
inline |
Permit changing allocator for this instance.
Definition at line 509 of file Block.h.
References casacore::False, and casacore::Block< T >::keep_allocator_p.
|
inline |
Prohibit changing allocator for this instance.
Definition at line 505 of file Block.h.
References casacore::Block< T >::keep_allocator_p, and casacore::True.
|
inline |
Definition at line 446 of file Block.h.
References casacore::Allocator_private::BulkAllocator< T2 >::allocate(), casacore::Block< T >::allocator_p, casacore::Block< T >::array, casacore::Allocator_private::BulkAllocator< T2 >::construct(), casacore::Allocator_private::BulkAllocator< T2 >::deallocate(), casacore::Allocator_private::BulkAllocator< T2 >::destroy(), casacore::Block< T >::destroyPointer, casacore::Block< T >::get_capacity(), casacore::Block< T >::get_size(), casacore::ArrayInitPolicies::INIT, casacore::Block< T >::set_capacity(), casacore::Block< T >::set_size(), casacore::Block< T >::traceAlloc(), casacore::Block< T >::traceFree(), and casacore::True.
|
inline |
Remove a single element from the Block.
If forceSmaller is True this will resize the Block and hence involve new memory allocations. This is relatively expensive so setting forceSmaller to False is preferred. When forceSmaller is False the Block is not resized but the elements with an index above the removed element are shuffled down by one. For backward compatibility forceSmaller is True by default.
initPolicy
makes sense to determine whether new storage should be initialized or not before copying when forceSmaller
is True.
Definition at line 442 of file Block.h.
References casacore::ArrayInitPolicies::INIT, casacore::Block< T >::init_anyway(), casacore::ArrayInitPolicies::NO_INIT, and casacore::Block< T >::remove().
Referenced by casacore::PtrBlock< T >::remove(), casacore::PtrBlock< T >::remove(), and casacore::Block< T >::remove().
|
inline |
Definition at line 531 of file Block.h.
References casacore::Block< T >::allocator_p, casacore::Block< T >::array, casacore::Allocator_private::BulkAllocator< T2 >::deallocate(), casacore::Allocator_private::BulkAllocator< T2 >::destroy(), casacore::Block< T >::destroyPointer, casacore::Block< T >::get_capacity(), casacore::Block< T >::get_size(), casacore::Block< T >::keep_allocator_p, casacore::Block< T >::set_capacity(), casacore::Block< T >::set_size(), and casacore::Block< T >::traceFree().
|
inline |
Replace the internal storage with a C-array (i.e.
pointer). If takeOverStorage
is True, The Block assumes that it owns the pointer, i.e. that it is safe to release it via allocator
when the Block
is destructed, otherwise the actual storage is not destroyed. If true, storagePointer is set to NULL
. It is strongly recommended to supply an appropriate allocator
argument explicitly whenever takeOverStorage
== True to let Block
to know how to release the storagePointer
. The default parameter of allocator will be changed from AllocSpec<NewDelAllocator<T> >value
to AllocSpec<DefaultAllocator<T> >value
in future. AipsError is thrown if allocator is incompatible with the current allocator of the instance and changing allocator is prohibited, even if takeOverStorage == False.
Definition at line 527 of file Block.h.
References casacore::Block< T >::replaceStorage(), and casacore::value().
Referenced by casacore::Block< T >::replaceStorage(), and casacore::PtrBlock< T >::replaceStorage().
|
inline |
Definition at line 379 of file Block.h.
References casacore::Allocator_private::BulkAllocator< T2 >::allocate(), casacore::Block< T >::allocator_p, casacore::Block< T >::array, casacore::Allocator_private::BulkAllocator< T2 >::construct(), casacore::Allocator_private::BulkAllocator< T2 >::deallocate(), casacore::Block< T >::deinit(), casacore::Allocator_private::BulkAllocator< T2 >::destroy(), casacore::Block< T >::destroyPointer, casacore::False, casacore::Block< T >::get_capacity(), casacore::Block< T >::get_size(), casacore::ArrayInitPolicies::INIT, casacore::Block< T >::set_capacity(), casacore::Block< T >::set_size(), casacore::Block< T >::traceAlloc(), casacore::Block< T >::traceFree(), and casacore::True.
|
inline |
Resizes the Block.
If n == nelements()
resize just returns. If a larger size is requested (n > nelements()
) the Block always resizes. If the requested size is smaller (n < nelements()
), by default the Block does not resize smaller, although it can be forced to with forceSmaller
. The reasoning behind this is that often the user will just want a buffer of at least a certain size, and won't want to pay the cost of multiple resizings.
Normally the old elements are copied over (although if the Block is lengthened the trailing elements will have undefined values), however this can be turned off by setting copyElements to False.
This is written as three functions because default parameters do not always work properly with templates.
initPolicy
makes sense to determine whether extended elements should be initialized or not when you enlarge Block.
Definition at line 375 of file Block.h.
References casacore::ArrayInitPolicies::INIT, casacore::Block< T >::init_anyway(), casacore::ArrayInitPolicies::NO_INIT, and casacore::Block< T >::resize().
Referenced by casacore::Block< T >::operator=(), casacore::ConcatRows::reserve(), casacore::PtrBlock< T >::resize(), casacore::PtrBlock< T >::resize(), casacore::PtrBlock< T >::resize(), and casacore::Block< T >::resize().
|
inline |
Definition at line 585 of file Block.h.
Referenced by casacore::PtrBlock< T >::set().
|
inlineprivate |
Set the capacity of the vector.
Definition at line 770 of file Block.h.
References casacore::Block< T >::capacity_p, casacore::Block< T >::get_size(), and casacore::Block< T >::set_size().
Referenced by casacore::Block< T >::init(), casacore::Block< T >::remove(), casacore::Block< T >::replaceStorage(), and casacore::Block< T >::resize().
|
inlineprivate |
Set the number of used elements in the vector.
Definition at line 763 of file Block.h.
References AlwaysAssert, casacore::Block< T >::get_capacity(), and casacore::Block< T >::used_p.
Referenced by casacore::Block< T >::remove(), casacore::Block< T >::replaceStorage(), casacore::Block< T >::resize(), and casacore::Block< T >::set_capacity().
|
inline |
Definition at line 610 of file Block.h.
References casacore::Block< T >::get_capacity().
Referenced by casacore::Block< T >::empty(), casacore::Block< T >::end(), casacore::Block< T >::end(), casacore::MArrayMath_global_functions_MArray_mathematical_operations::median(), casacore::TableParseProject::nColumnsPreCalc(), casacore::Block< T >::nelements(), casacore::Block< T >::operator=(), and casacore::PtrBlock< T >::size().
|
inline |
If you really, really, need a "raw" pointer to the beginning of the storage area this will give it to you.
This may leave dangling pointers if the block is destructed or if the assignment operator or resize is used. Returns a null pointer if nelements() == 0
. It is best to only use this if you completely control the extent and lifetime of the Block
.
Definition at line 603 of file Block.h.
References casacore::Block< T >::array.
Referenced by casacore::MArrayMath_global_functions_MArray_mathematical_operations::fractile(), casacore::MArrayMath_global_functions_MArray_mathematical_operations::median(), casacore::PtrBlock< T >::storage(), and casacore::PtrBlock< T >::storage().
|
inline |
Definition at line 604 of file Block.h.
References casacore::Block< T >::array.
|
inline |
Definition at line 654 of file Block.h.
References casacore::BlockTrace::doTraceAlloc(), and casacore::BlockTrace::itsTraceSize.
Referenced by casacore::Block< T >::init(), casacore::Block< T >::remove(), and casacore::Block< T >::resize().
|
inline |
Definition at line 660 of file Block.h.
Referenced by casacore::Block< T >::dealloc(), casacore::Block< T >::remove(), casacore::Block< T >::replaceStorage(), and casacore::Block< T >::resize().
|
private |
The allocator.
Definition at line 776 of file Block.h.
Referenced by casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::construct(), casacore::Block< T >::construct(), casacore::Block< T >::construct(), casacore::Block< T >::dealloc(), casacore::Block< T >::deinit(), casacore::Block< T >::destroy(), casacore::Block< T >::get_allocator(), casacore::Block< T >::init(), casacore::Block< T >::isCompatibleAllocator(), casacore::Block< T >::operator=(), casacore::Block< T >::remove(), casacore::Block< T >::replaceStorage(), and casacore::Block< T >::resize().
|
private |
The actual storage.
Definition at line 782 of file Block.h.
Referenced by casacore::Block< T >::begin(), casacore::Block< T >::begin(), casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::construct(), casacore::Block< T >::construct(), casacore::Block< T >::construct(), casacore::Block< T >::dealloc(), casacore::Block< T >::deinit(), casacore::Block< T >::destroy(), casacore::Block< T >::end(), casacore::Block< T >::end(), casacore::Block< T >::init(), casacore::Block< T >::operator=(), casacore::Block< T >::operator=(), casacore::Block< T >::operator[](), casacore::Block< T >::operator[](), casacore::Block< T >::remove(), casacore::Block< T >::replaceStorage(), casacore::Block< T >::resize(), casacore::Block< T >::storage(), and casacore::Block< T >::storage().
|
private |
The capacity of the vector.
Definition at line 778 of file Block.h.
Referenced by casacore::Block< T >::get_capacity(), and casacore::Block< T >::set_capacity().
|
private |
Can we delete the storage upon destruction?
Definition at line 784 of file Block.h.
Referenced by casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::Block(), casacore::Block< T >::dealloc(), casacore::Block< T >::deinit(), casacore::Block< T >::remove(), casacore::Block< T >::replaceStorage(), and casacore::Block< T >::resize().
|
private |
Can we change allocator or not?
Definition at line 786 of file Block.h.
Referenced by casacore::Block< T >::permitChangingAllocator(), casacore::Block< T >::prohibitChangingAllocator(), and casacore::Block< T >::replaceStorage().
|
private |
The number of used elements in the vector.
Definition at line 780 of file Block.h.
Referenced by casacore::Block< T >::get_size(), and casacore::Block< T >::set_size().