Itasca C++ Interface
|
An array class that attempts to minimize unnecessary heap access. More...
#include <farray.h>
Public Types | |
using | size_type = uint64 |
Typedef to assist in STL compatibility. | |
using | value_type = T |
Typedef to assist in STL compatibility. | |
using | iterator = T * |
Typedef to assist in STL compatibility. | |
using | const_iterator = const T * |
Typedef to assist in STL compatibility. | |
Public Member Functions | |
FArray () | |
Default constructor - the array size is zero. | |
FArray (size_type s, const T &t=T()) | |
template<uint64 S2> | |
FArray (const FArray< T, S2 > &f) | |
Copy constructor, valid for FArrays of the same data type but different stack lengths. | |
FArray (const FArray< T, S > &f) | |
Specialized copy constructor, for the special case of when the stack lengths are the same. | |
FArray (std::initializer_list< T > l) | |
~FArray () | |
Destructor. | |
template<uint64 S2> | |
const FArray< T, S > & | operator= (const FArray< T, S2 > &f) |
Assignment operator, valid for FArrays of the same data type but different stack lengths. | |
const FArray< T, S > & | operator= (const FArray< T, S > &f) |
Specialized assignment operator, for the special case of when the stack lengths are the same. | |
size_type | size () const |
size_type | stackSize () const |
Returns the size of the array pre-allocated on the stack. | |
size_type | allocated () const |
bool | empty () const |
T * | data () |
const T * | data () const |
T & | front () |
const T & | front () const |
T & | back () |
const T & | back () const |
size_type | find (const T &t) const |
void | push_back (const T &t) |
Adds a new element to the end of the array, increasing the array size by one. | |
T * | emplace_back () |
T * | emplace_n_back (uint64 n) |
void | pop_back () |
Removes the last element in the array. The results are undefined if the array is of zero length. | |
void | resize (size_type i, const T &t=T()) |
iterator | insert (size_type i, const T &t) |
void | put (size_type i, const T &t) |
Adds a value to the array, first making certain it is big enough to hold it. | |
template<class C > | |
void | append (const C &in) |
Appends the contents of one FArray onto another. | |
iterator | insert (iterator it, const T &t) |
bool | remove (size_type i) |
size_type | removeAll (const T &t) |
void | clear () |
void | clear_no_destruct () |
void | reset () |
void | clip () |
iterator | begin () |
const_iterator | begin () const |
const_iterator | constBegin () const |
iterator | end () |
const_iterator | end () const |
const_iterator | constEnd () const |
T & | at (size_type i) |
const T & | at (size_type i) const |
T & | operator[] (size_type i) |
const T & | operator[] (size_type i) const |
T | value (int i, const T &t=T()) const |
T | value (quint32 i, const T &t=T()) const |
T | value (uint64 i, const T &t=T()) const |
An array class that attempts to minimize unnecessary heap access.
T is the data type.
S is the stack length.
This class attempts to provide a speed-optimized array for use in plot generation.
It does this in two ways.
First, it attempts to minimize heap churn by not deallocating memory.
Second, it has a second template argument that indicates how much memory to create ON THE STACK. Only if the array size needs to exceed S, does it actually use memory from the heap.
|
inlineexplicit |
Constructs the array with size s, and each entry in the array has initial value t.
s | Initial size of the array. |
t | The value each element is initialized with. |
|
inline |
|
inline |
Implemented as a pointer. STL compatible as a random-access iterator.
|
inline |
Implemented as a pointer. STL compatible as a random-access iterator.
|
inline |
Resets the array size to zero, destroying all current elements. The allocated length is not changed.
|
inline |
Resets the array size to zero. No destructor is called for the array elements. The allocated length is not changed.
|
inline |
|
inline |
Implemented as a pointer. STL compatible as a random-access iterator.
|
inline |
Implemented as a pointer. STL compatible as a random-access iterator.
|
inline |
|
inline |
|
inline |
To avoid creating a temporary object, can call this to get memory location of new lcoation at end of stack and then use it to do an in-place new. new(fa.emplace_back()) Fred(arg1,arg2);
|
inline |
emplace_n_back: make sure n new positions are allocated and return a pointer to the first of those positions; caller should create objects at those positions.
|
inline |
Implemented as a pointer. STL compatible as a random-access iterator.
|
inline |
Implemented as a pointer. STL compatible as a random-access iterator.
Searches the array to find the first element matching t.
Returns the index found, or limits<size_type>::max() if not found. This search is linear time.
|
inline |
|
inline |
|
inline |
Inserts a value into the array at position i (the new position it will occupy). If I is past the end of the array, adds to end.
|
inline |
Inserts a value intot he array at position i (the new position it will occupy). If I is past the end of the array, adds to end.
Removes a value from the array at position i If i is past the end of the array, does nothing.
Removes all values from the array matching t (operator==). Returns the number of objects removed
|
inline |
Resets the array size to zero, destroying all current elements. The allocated length is reset back to the stack length, and any heap memory is returned.
|
inline |
i | The new array length. |
t | The value assigned to new array elements (if any). Changes the actual length (not the allocated length) of the array to i. May increase the allocated length, but will not decrease it. |
|
inline |
|
inline |
|
inline |