What is the true form of Templated Class Function return type(another template class)

What is the declaration of the template class's function return type which is another template class?


AIterator->Template Class
ASet ->Template Class

Question: What is the true declaration?
-AIterator<T> or AIterator

1
2
3
4
5
6
7
template<class T>
	AIterator<T> ASet<T>::begin() noexcept
	{
		AIterator it();

		return it.getIterator();
	}
Last edited on
AIterator<T>
Thank you peter87
Topic archived. No new replies allowed.