Given the following:

Type
  TSomeTypeArray = array of SomeType;

var
  anArray: array of SomeType;

function GetSomeTypeArray: TSomeTypeArray; 

I want to write anArray = GetSomeTypeArray(); but the compiler does not like it. Without changing the type of anArray or the return type of GetSomeTypeArrayhow can I typecast TSomeTypeArray to array of SomeType?

link|improve this question

73% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You can't. You need to declare anArray as of type TSomeTypeArray, then it should work.

Alternatively, you could store the result into another array of type TSomeTypeArray then call SetLength on anArray to the length of the returned array. And finally loop through the two arrays setting the elements of anArray to the elements of the returned array.

link|improve this answer
not the answer I wanted :P but thanks – Asher Apr 19 '11 at 13:00
Yeah, sorry. AFAIK that is the only way, and since no one else piped in with an alternative . . . – Jim McKeeth Apr 20 '11 at 21:04
feedback

You could typecast the left hand side of the assignment:

TSomeTypeArray(anArray) := GetSomeTypeArray();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.