from Bruce Eckels excellent 'Thinking in C++'

template<class T, int size>
int asz(T (&)[size]) { return size; }

I'm referring to "T (&)[size]". Can somebody pls explain?

thanks

Reply via email to