Array factory returnig the same array instance as long as it requested with the same array length. If length changes, new array instance created. More...
Inherits ObjectFactory< T[], int >.
Public Member Functions | |
FactoryReusableArray (int size) | |
T[] | New () |
T[] | New (int size) |
void | Free (T[] obj) |
void | Free (T[] obj, int info) |
void | Dispose () |
Public Member Functions inherited from ObjectFactory< T[], int > | |
TType | New () |
TType | New (TInfo info) |
void | Free (TType obj) |
void | Free (TType obj, TInfo info) |
Properties | |
int | Info [get] |
Properties inherited from ObjectFactory< T[], int > | |
TInfo | Info [get] |
Array factory returnig the same array instance as long as it requested with the same array length. If length changes, new array instance created.
T | Array element type. |