API Guides > ConceptRT 3.x
InvocableArrayDynamicFixed< ElementType > Class Template Reference

Invocable array whose size is fixed at the construction time. More...

Detailed Description

template<class ElementType>
class ConceptRT::InvocableArrayDynamicFixed< ElementType >

Invocable array whose size is fixed at the construction time.

Template Parameters
ElementTypeArray items type.
Warning
Non-Deterministic: Creation is non-deterministic. Browsing the array is deterministic. Determinism when using ConceptRT library can be ensure by using Context Time Critical mechanisms.
+ Inheritance diagram for InvocableArrayDynamicFixed< ElementType >:

Public Member Methods

 InvocableArrayDynamicFixed (Int32 size)
 Constructor. More...
 
- Public Member Methods inherited from SafeArrayDynamicFixed< ElementType >
 SafeArrayDynamicFixed (Int32 size)
 Constructor. More...
 
 SafeArrayDynamicFixed (const SafeArrayDynamicFixed< ElementType > &right)
 Constructor copy More...
 
ElementType & operator[] (Int32 index)
 Array indexer operator. More...
 
const ElementType & operator[] (Int32 index) const
 Array indexer operator. More...
 
Int32 GetSize () const
 Gets the array actual size. More...
 
- Public Member Methods inherited from BaseSafeArray< ElementType >
bool IndexValid (Int32 index) const
 Query if index is valid. More...
 
void Exchange (Int32 index1, Int32 index2)
 Exchanges two items More...
 

Constructor & Destructor Documentation

Constructor.

Parameters
sizeThe size.
Warning
Non-Deterministic: The dynamic size array is created on the heap. Determinism when using ConceptRT library can be ensure by using Context Time Critical mechanisms.