Hi,

I have the following C++ code, what would be the equivalent D code;

template <class T>
T Test<T>::pop(int ind)
{
    T pop = T();
    // Stuff that not important
    //....
    return pop;
}

Thanks,
rookie

Reply via email to