What does “see below” mean when used as a type or exception specification?

淺唱寂寞╮ 提交于 2019-12-01 06:37:32

see below is simply a place holder for one of a few possible types which are always described in the following text. For example here:

typedef see below element_type;

1

Type: Ptr::element_type if such a type exists; otherwise, T if Ptr is a class template instantia-tion of the form SomePointer<T, Args>, where Args is zero or more type arguments; otherwise, the specialization is ill-formed.

you may subsitute Ptr::element_type or T if SomePointer<T, Args> is valid for see below depending on context.

This form is named a syntactic category and is described in section 1.6 of the same document.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!