Unfortunately FreePascal currently has only generic classes, not generic functions. Though, your goal can still be achieved, albeit a little awkwardly. You need to define a new class to encapsulate your operation:
unit Thrice;
interface
type
generic ThriceCalculator<A> = class
public
class function Calculate(x: A): array of A;
// We define it as a class function to avoid having to create an object when
// using Calculate. Similar to C++'s static member functions.
end;
implementation
function ThriceCalculator.Calculate(x: A): array of A;
begin
SetLength(Result, 3);
Result[0]:= x;
Result[1]:= x;
Result[2]:= x;
end;
end.
Now, unfortunately when you want to use this class with any specific type, you need to specialize it:
type
IntegerThrice = specialize ThriceCalculator<Integer>;
Only then you can use it as:
myArray:= IntegerThrice.Calculate(10);
As you see, Pascal is not the way to go for generic programming yet.
thrice. – mcandre Oct 17 '11 at 20:45