public static T[] IfftShift<T>(
T[] a
)
where T : new()
Public Shared Function IfftShift(Of T As New) (
a As T()
) As T()
public:
generic<typename T>
where T : gcnew()
static array<T>^ IfftShift(
array<T>^ a
)
static member IfftShift :
a : 'T[] -> 'T[] when 'T : new()