CrossFramework Library
|
#include <XBase/RuntimeArray.hpp>
実行時に確保する大きさが決まる配列。
typedef | |
typedef T | ValueType |
コンストラクタとデストラクタ | |
RuntimeArray (uint aCount, IAllocator &aAllocator=IAllocator::Default()) | |
コンストラクタ。 | |
~RuntimeArray () | |
デストラクタ。 | |
アクセス | |
uint | count () const |
配列長。 | |
ValueType & | at (const uint aIndex) |
指定番目の要素にアクセス。 | |
const ValueType & | at (const uint aIndex) const |
指定番目の要素にアクセス。 | |
演算子オーバーロード | |
ValueType & | operator[] (const uint aIndex) |
at() のエイリアス。 | |
const ValueType & | operator[] (const uint aIndex) const |
at()const のエイリアス。 |