Grijjy Foundation |
record TgoPtr
UnitDeclaration
DescriptionGeneric record used to define a pointer to a value type. For example, you can declare: var FooPtr: TgoPtr<TFoo>.P;
which is internally equivalent to:
var
FooPtr: ˆTFoo;
However, this generic record makes it easier to work with value-type collections such as TgoValueList and TgoValueDictionary. Without this record type, you would have to write something like: var FooPtr: TgoValueDictionary<Integer, TFoo>.P; OverviewInternal Types
DescriptionInternal Types
Generated by P2PasDoc 0.13.0 on 2017-04-25 12:54:26 |