Function CSPArray<T>::operator T*()
Description:
Extracts a pointer to the memory of the array.
 |
Prototype:
operator T*() const;
Arguments:
No arguments (void).
Return value:
Returns a pointer to the memory of the array.
Examples:
CSPArray<char> A; .... char p* = A;
See also:
member functions GetPtr()
|
|