I have been reading all around about be aware >> as ending of nested template and >> as shift operator...
>>
Now I have tried it i
Be careful because previously good C++03 code may break with compilers supporting this feature.
MyArray< MyArray> 2>, 5 > arrayInst;
This would be the fix:
MyArray< MyArray> 2)>, 5 > arrayInst;